repo.or.cz
/
ACE_TAO.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git]
/
TAO
/
TAO_IDL
/
ast
/
ast_visitor.cpp
blob
662179b41544301b9e43c564ed41a352db6cadb6
1
#include
"ast_visitor.h"
2
#include
"ace/config-all.h"
3
4
ast_visitor
::
ast_visitor
(
void
)
5
{
6
}
7
8
ast_visitor
::~
ast_visitor
(
void
)
9
{
10
}
11
12
int
ast_visitor
::
visit_fixed
(
AST_Fixed
*)
13
{
14
return
0
;
15
}
16
17
int
ast_visitor
::
visit_annotation_decl
(
AST_Annotation_Decl
*)
18
{
19
return
0
;
20
}