Samchon Framework for CPP  1.0.0
InvokeHistoryArray.cpp
1 #include <samchon/protocol/InvokeHistoryArray.hpp>
2 
3 using namespace std;
4 using namespace samchon::library;
5 using namespace samchon::protocol;
6 
7 InvokeHistoryArray::InvokeHistoryArray()
8  : super()
9 {
10 }
12 {
13  return new InvokeHistory();
14 }
15 
16 auto InvokeHistoryArray::TAG() const -> string
17 {
18  return "invokeHistoryArray";
19 }
20 auto InvokeHistoryArray::CHILD_TAG() const -> string
21 {
22  return "invokeHistory";
23 }
Definition: RWMutex.hpp:4
Package of libraries.
Definition: library.hpp:84
A history of an Invoke message.
An Entity and a container of children Entity objects.
Definition: EntityGroup.hpp:52
virtual auto TAG() const -> std::string
A tag name when represented by XML.
virtual auto CHILD_TAG() const -> std::string
A tag name of children.
Package of network protocol and libraries.
Definition: protocol.hpp:185
virtual auto createChild(std::shared_ptr< library::XML >) -> InvokeHistory *override
Factory method of a child Entity.