Samchon Framework for CPP  1.0.0
SharedEntityList.hpp
1 #pragma once
2 #include <samchon/protocol/EntityGroup.hpp>
3 #include <list>
4 
5 namespace samchon
6 {
7 namespace protocol
8 {
17  template <typename T, typename Key = std::string>
18  using SharedEntityList = EntityGroup<std::list<std::shared_ptr<T>>, T, Key>;
19 };
20 };