source: app/src/dgp/thesymbols.hh @ 0214596

help
Last change on this file since 0214596 was 0214596, checked in by pawelk <pawelk@…>, 16 years ago

Dodalismy do pakietu utt komponent dgp (brak configow i innych bajerow).

git-svn-id: svn://atos.wmid.amu.edu.pl/utt@24 e293616e-ec6a-49c2-aa92-f4a8b91c5d16

  • Property mode set to 100644
File size: 520 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
11typedef Symbol<1> Cat;
12
13typedef Symbol<2> Role;
14typedef list<Role> RoleList;
15typedef list<Role>::iterator RoleListIter;
16typedef bitset<MAXTYPES> RoleSet;
17typedef set<Role> Roles;
18typedef Roles::iterator RolesIter;
19
20typedef Symbol<3> Constr;
21typedef list<Constr> ConstrList;
22typedef list<Constr>::iterator ConstrListIter;
23
24typedef Symbol<4> Rel;
25typedef Symbol<5> Flag;
26
27#endif
Note: See TracBrowser for help on using the repository browser.