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 #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git]
/
TAO
/
TAO_IDL
/
be_include
/
be_fixed.h
blob
617f5725cb38056e63b29460ce5b526d2600b5c6
1
#ifndef BE_FIXED_H
2
#define BE_FIXED_H
3
4
#include
"ast_fixed.h"
5
#include
"be_type.h"
6
7
class
AST_Expression
;
8
class
be_visitor
;
9
10
class
be_fixed
:
public virtual
AST_Fixed
,
public virtual
be_type
11
{
12
public
:
13
be_fixed
(
UTL_ScopedName
*
name
,
14
AST_Expression
*
digits
,
15
AST_Expression
*
scale
);
16
17
virtual
int
accept
(
be_visitor
*
visitor
);
18
19
virtual
void
destroy
();
20
};
21
22
#endif