repo.or.cz
/
opsoft.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixes
[opsoft.git]
/
silentbob
/
include
/
wit.h
blob
35a4b6c9c349ccaea53e1fa6bdfac00f4f44c1f8
1
/*
2
* (c) Oleg Puchinin 2006
3
* graycardinalster@gmail.com
4
*
5
*/
6
7
#ifndef DEFINE_WIT_H
8
#define DEFINE_WIT_H
9
10
namespace
OT
{
11
enum
{
12
Variable
=
1
<<
0
,
13
Typedef
=
1
<<
1
,
14
Extern
=
1
<<
2
,
15
Function
=
1
<<
3
,
16
Struct
=
1
<<
4
,
17
Operator
=
1
<<
5
,
18
Macro
=
1
<<
6
,
19
Call
=
1
<<
7
,
20
Define
=
1
<<
8
,
21
Class
=
1
<<
9
,
22
Namespace
=
1
<<
10
,
23
Enum
=
1
<<
11
,
24
Other
=
1
<<
30
25
};
26
};
27
28
#endif