Samchon Framework for CPP  1.0.0
InvokeHistoryArray.hpp
1 #pragma once
2 #include <samchon/API.hpp>
3 
4 #include <samchon/protocol/SharedEntityArray.hpp>
5 #include <samchon/protocol/InvokeHistory.hpp>
6 
7 namespace samchon
8 {
9 namespace protocol
10 {
16  class SAMCHON_FRAMEWORK_API InvokeHistoryArray
17  : public SharedEntityArray<InvokeHistory>
18  {
19  protected:
21 
22  public:
27  virtual ~InvokeHistoryArray() = default;
28 
29  protected:
30  virtual auto createChild(std::shared_ptr<library::XML>)->InvokeHistory* override;
31 
32  public:
33  virtual auto TAG() const->std::string;
34  virtual auto CHILD_TAG() const->std::string;
35  };
36 };
37 };
An Entity and a container of children Entity objects.
Definition: EntityGroup.hpp:52
Top level namespace of products built from samchon.
Definition: ByteArray.hpp:7