Samchon Framework for CPP  1.0.0
IEntityGroup.hpp
1 #pragma once
2 #include <samchon/API.hpp>
3 
4 #include <string>
5 
6 namespace samchon
7 {
8 namespace protocol
9 {
32  class SAMCHON_FRAMEWORK_API IEntityGroup
33  {
34  protected:
44  virtual auto CHILD_TAG() const->std::string = 0;
45 
46  public:
50  IEntityGroup();
51  virtual ~IEntityGroup() = default;
52  };
53 };
54 };
An iternface for entity group.
Top level namespace of products built from samchon.
Definition: ByteArray.hpp:7