atlas  0.6
set.h
Go to the documentation of this file.
1 
5 /*
6  Copyright (C) 2004,2005 Fokko du Cloux
7  part of the Atlas of Lie Groups and Representations
8 
9  For license information see the LICENSE file
10 */
11 
12 #ifndef SET_H /* guard against multiple inclusions */
13 #define SET_H
14 
15 #include <cstddef>
16 #include <vector>
17 
18 /******** forward type declarations *****************************************/
19 
20 namespace atlas {
21 
22 namespace set {
23 
24  typedef size_t Elt;
25  typedef std::vector<Elt> EltList;
26 
27 }
28 
29 }
30 
31 #endif
size_t Elt
Definition: Atlas.h:52
Definition: Atlas.h:38
std::vector< Elt > EltList
Definition: Atlas.h:53