// // $Id$ // /* -*- c++ -*- */ // ============================================================================ // // = LIBRARY // TAO IDL // // = FILENAME // tie_sh.h // // = DESCRIPTION // Concrete visitor for the Interface node. // This one provides the code generation for TIE classes // // = AUTHOR // Aniruddha Gokhale // // ============================================================================ #if !defined (_BE_INTERFACE_TIE_SH_H_) #define _BE_INTERFACE_TIE_SH_H_ class be_visitor_interface_tie_sh : public be_visitor_interface { // // = TITLE // be_visitor_interface_tie_sh // // = DESCRIPTION // This is a concrete visitor to generate the server header for the TIE class // // public: be_visitor_interface_tie_sh (be_visitor_context *ctx); // constructor ~be_visitor_interface_tie_sh (void); // destructor virtual int visit_interface (be_interface *node); // set the right context and make a visitor }; #endif /* _BE_INTERFACE_TIE_SH_H_ */