nx_server_plugin_sdk  1.0
Server Plugin SDK
i_data_list.h
1 // Copyright 2018-present Network Optix, Inc. Licensed under MPL 2.0: www.mozilla.org/MPL/2.0/
2 
3 #pragma once
4 
5 #include <nx/sdk/interface.h>
6 
7 namespace nx::sdk::cloud_storage {
8 
9 class IDataList
10 {
11 public:
12  virtual void goToBeginning() const = 0;
13  virtual void next() const = 0;
14  virtual bool atEnd() const = 0;
15 };
16 
17 } // namespace nx::sdk::cloud_storage
Definition: i_data_list.h:9
Definition: algorithm.cpp:9