Merge pull request #2301 from sonndinh/remove-dup-reactor-functions
[ACE_TAO.git] / TAO / TAO_IDL / be_include / be_root.h
blob44a6ac9118c78b83a14cb53ed6a07e37f521bcd4
1 /* -*- c++ -*- */
3 //=============================================================================
4 /**
5 * @file be_root.h
7 * Extension of class AST_Root that provides the backend
9 * @author Copyright 1994-1995 by Sun Microsystems
10 * @author Inc. and Aniruddha Gokhale
12 //=============================================================================
14 #ifndef TAO_BE_ROOT_H
15 #define TAO_BE_ROOT_H
17 #include "be_module.h"
18 #include "ast_root.h"
20 class be_visitor;
22 /**
23 * The back end extension of the AST_Root class
25 class be_root : public virtual AST_Root,
26 public virtual be_module
28 public:
29 be_root (UTL_ScopedName *n);
31 virtual ~be_root ();
33 /// Cleanup method.
34 virtual void destroy ();
36 // Visiting.
37 virtual int accept (be_visitor *visitor);
40 #endif