Samchon Framework for CPP  1.0.0
NTEntityGroup.hpp
1 #pragma once
2 #include <samchon/API.hpp>
3 
4 #include <memory>
5 
6 namespace samchon
7 {
8 namespace namtree
9 {
10  class NTIterator;
11 
26  class SAMCHON_FRAMEWORK_API NTEntityGroup
27  {
28  public:
32  NTEntityGroup();
33  virtual ~NTEntityGroup() = default;
34 
45  virtual auto begin() const->std::shared_ptr<NTIterator> = 0;
46 
65  virtual auto end() const->std::shared_ptr<NTIterator> = 0;
66  };
67 };
68 };
Iterator of historical data.
Definition: NTIterator.hpp:26
A historical, studying data.
Top level namespace of products built from samchon.
Definition: ByteArray.hpp:7