repo.or.cz
/
CppToLua.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
gerando o codigo e tratando visibilidade dos métodos
[CppToLua.git]
/
node.h
blob
fa0a922c7acb61b33edbccd17983e7dbb136106a
1
#ifndef __NODE_H__
2
#define __NODE_H__
3
4
#include <string>
5
#include <vector>
6
#include <algorithm>
7
using namespace
std
;
8
//using std::string;
9
10
typedef
struct
sStringVec
11
{
12
vector
<
string
>
vs
;
13
}
StringVec
;
14
15
typedef
struct
sStringVecVec
16
{
17
vector
<
vector
<
string
> >
vvs
;
18
}
StringVecVec
;
19
20
typedef
struct
sIdf
{
21
string type
;
22
string name
;
23
bool
isPublic
;
24
vector
<
sIdf
>
param
;
25
}
Idf
;
26
27
typedef
struct
sNode
{
28
string s
;
29
vector
<
Idf
>
vi
;
30
}
Node
;
31
32
extern
bool
member_scope_public
;
33
34
#endif