Merge pull request #1844 from jrw972/monterey
[ACE_TAO.git] / TAO / TAO_IDL / be_include / be_fixed.h
blob7f9936c8b7db17bb09bb15e5f05f6c0e6c00ac9e
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 ();
21 DEF_NARROW_FROM_DECL (be_fixed);
24 #endif