Merge branch 'experiment' of git+ssh://repo.or.cz/srv/git/glgame
[glgame.git] / src / tmy_list.h
blobfe138221333ece48b63fee993741240ab88d8050
1 #ifndef T_MY_LIST_H_
2 #define T_MY_LIST_H_
4 #include <list>
5 #include "tloop_iterator.h"
7 /**
8 @brief Класс списка с кольцевым итератором
10 @class den::list
12 namespace den
15 template <typename T>
16 struct list : std::list<T>
18 /// Кольцевой итератор
19 typedef loop_iterator<list> loop_iterator;
24 #endif