Revert "Use a variable on the stack to not have a temporary in the call"
[ACE_TAO.git] / TAO / TAO_IDL / be_include / be_union_label.h
blob0d9416f464cacf7213700ad8458f18ba35ca66b9
1 #ifndef BE_UNION_LABEL_H
2 #define BE_UNION_LABEL_H
4 #include "ast_union_label.h"
6 class be_visitor;
8 class be_union_label : public virtual AST_UnionLabel
10 public:
11 be_union_label (AST_UnionLabel::UnionLabel ul,
12 AST_Expression *v);
14 // Visiting.
15 virtual int accept (be_visitor *visitor);
17 // Cleanup.
18 virtual void destroy ();
21 #endif