Samchon Framework for CPP  1.0.0
NTParameterArray.cpp
1 #include <samchon/namtree/NTParameterArray.hpp>
2 # include <samchon/namtree/NTParameter.hpp>
3 
4 using namespace std;
5 
6 using namespace samchon;
7 using namespace samchon::library;
8 using namespace samchon::protocol;
9 using namespace samchon::namtree;
10 
11 auto NTParameterArray::TAG() const -> string { return "parameterArray"; }
12 auto NTParameterArray::CHILD_TAG() const -> string { return "parameter"; }
13 
14 NTParameterArray::NTParameterArray()
15  : super()
16 {
17 }
18 auto NTParameterArray::createChild(shared_ptr<XML>) -> NTParameter*
19 {
20  return new NTParameter();
21 }
virtual auto createChild(std::shared_ptr< library::XML >) -> NTParameter *override
Factory method of a child Entity.
Definition: RWMutex.hpp:4
Package of libraries.
Definition: library.hpp:84
An Entity and a container of children Entity objects.
Definition: EntityGroup.hpp:52
Package of network protocol and libraries.
Definition: protocol.hpp:185
Package of Nam-Tree.
Definition: namtree.hpp:93
A metadata of a parameter in a function.
Definition: NTParameter.hpp:25
Top level namespace of products built from samchon.
Definition: ByteArray.hpp:7