Samchon Framework for CPP  1.0.0
NTParameterArray.hpp
1 #pragma once
2 #include <samchon/API.hpp>
3 
4 #include <samchon/protocol/SharedEntityArray.hpp>
5 #include <samchon/namtree/NTParameter.hpp>
6 
7 namespace samchon
8 {
9 namespace namtree
10 {
25  class SAMCHON_FRAMEWORK_API NTParameterArray
26  : public virtual protocol::SharedEntityArray<NTParameter>
27  {
28  private:
30 
31  public:
32  virtual auto TAG() const->std::string override;
33  virtual auto CHILD_TAG() const->std::string override;
34 
39  virtual ~NTParameterArray() = default;
40 
41  protected:
42  virtual auto createChild(std::shared_ptr<library::XML>)->NTParameter* override;
43  };
44 };
45 };
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