Samchon Framework for CPP  1.0.0
SharedEntityList.hpp
1 #pragma once
2 
3 #include <samchon/protocol/EntityGroup.hpp>
4 #include <list>
5 
6 namespace samchon
7 {
8 namespace protocol
9 {
18  template <typename _Ty = Entity>
19  using SharedEntityList =
20  EntityGroup
21  <
22  std::list<std::shared_ptr<_Ty>>,
23  _Ty, std::shared_ptr<_Ty>
24  >;
25 };
26 };
EntityGroup< std::list< std::shared_ptr< _Ty >>, _Ty, std::shared_ptr< _Ty > > SharedEntityList
An EntityGroup with list container and children capsuled in shared pointers.
Top level namespace of products built from samchon.
Definition: ByteArray.hpp:7