Samchon Framework for CPP  1.0.0
UniqueEntityList.hpp
1 #pragma once
2 #include <samchon/API.hpp>
3 
4 #include <samchon/protocol/IEntityUniquePtrGroup.hpp>
5 #include <list>
6 
7 namespace samchon
8 {
9 namespace protocol
10 {
26  template <typename _Ty = Entity>
27  using UniqueEntityList =
28  EntityGroup
29  <
30  std::list<std::unique_ptr<_Ty>>,
31  _Ty, std::unique_ptr<_Ty>
32  >;
33 };
34 };
EntityGroup< std::list< std::unique_ptr< _Ty >>, _Ty, std::unique_ptr< _Ty > > UniqueEntityList
An EntityGroup with list container and children capsuled in unique pointers.
Top level namespace of products built from samchon.
Definition: ByteArray.hpp:7