repo.or.cz
/
glgame.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'experiment' of git+ssh://repo.or.cz/srv/git/glgame
[glgame.git]
/
src
/
tmy_list.h
blob
fe138221333ece48b63fee993741240ab88d8050
1
#ifndef T_MY_LIST_H_
2
#define T_MY_LIST_H_
3
4
#include <list>
5
#include
"tloop_iterator.h"
6
7
/**
8
@brief Класс списка с кольцевым итератором
9
10
@class den::list
11
*/
12
namespace
den
13
{
14
15
template
<
typename T
>
16
struct
list
:
std
::
list
<
T
>
17
{
18
/// Кольцевой итератор
19
typedef
loop_iterator
<
list
>
loop_iterator
;
20
};
21
22
}
23
24
#endif