Samchon Framework for CPP  1.0.0
EntityGroupBase.hpp
1 #pragma once
2 
3 #include <string>
4 
5 namespace samchon
6 {
7 namespace protocol
8 {
32  {
33  public:
34  virtual ~EntityGroupBase() = default;
35 
36  public:
46  virtual auto CHILD_TAG() const->std::string = 0;
47  };
48 };
49 };
virtual auto CHILD_TAG() const -> std::string=0
A tag name of children.
An iternface for entity group.