source: _old/app/src/dgp/thesymbols.hh @ 743cc4f

Last change on this file since 743cc4f was 57728c1, checked in by Mateusz Hromada <ruanda@…>, 15 years ago

Move old files to _old dir.

  • Property mode set to 100644
File size: 578 bytes
Line 
1#ifndef __THESYMBOLS__HH
2#define __THESYMBOLS__HH
3
4#include "symbol.hh"
5#include "const.hh"
6
7#include <list>
8#include <set>
9#include <bitset>
10
11
12using namespace std;
13
14typedef Symbol<1> Cat;
15
16typedef Symbol<2> Role;
17typedef list<Role> RoleList;
18typedef list<Role>::iterator RoleListIter;
19typedef bitset<MAXTYPES> RoleSet;
20typedef set<Role> Roles;
21typedef Roles::iterator RolesIter;
22
23typedef Symbol<3> Constr;
24typedef list<Constr> ConstrList;
25typedef list<Constr>::iterator ConstrListIter;
26
27typedef Symbol<4> Rel;
28
29typedef Symbol<5> Flag;
30typedef bitset<MAXFLAGS> FlagSet;
31
32#endif
Note: See TracBrowser for help on using the repository browser.