Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git] / TAO / TAO_IDL / be_include / be_fixed.h
blob617f5725cb38056e63b29460ce5b526d2600b5c6
1 #ifndef BE_FIXED_H
2 #define BE_FIXED_H
4 #include "ast_fixed.h"
5 #include "be_type.h"
7 class AST_Expression;
8 class be_visitor;
10 class be_fixed : public virtual AST_Fixed, public virtual be_type
12 public:
13 be_fixed (UTL_ScopedName *name,
14 AST_Expression *digits,
15 AST_Expression *scale);
17 virtual int accept (be_visitor *visitor);
19 virtual void destroy ();
22 #endif