#include <PSDL_Typecode_Defn.h>
Inheritance diagram for TAO_PSDL_Typecode_Defn:
Public Member Functions | |
TAO_PSDL_Typecode_Defn () | |
~TAO_PSDL_Typecode_Defn () | |
int | visit_type_declarator (TAO_PSDL_Type_Declarator *) |
Definition at line 31 of file PSDL_Typecode_Defn.h.
TAO_PSDL_Typecode_Defn::TAO_PSDL_Typecode_Defn | ( | ) |
TAO_PSDL_Typecode_Defn::~TAO_PSDL_Typecode_Defn | ( | ) |
int TAO_PSDL_Typecode_Defn::visit_type_declarator | ( | TAO_PSDL_Type_Declarator * | ) | [virtual] |
Reimplemented from TAO_PSDL_Node_Visitor.
Definition at line 20 of file PSDL_Typecode_Defn.cpp.
References TAO_PSDL_Scope::get_si(), TAO_PSDL_Stream::indent(), and TAO_PSDL_Scope::instance().
00021 { 00022 ACE_UNUSED_ARG (type_declarator); 00023 // Get a pointer to PSDL_Stream of the stub implementation file 00024 TAO_PSDL_Stream *ps_si = TAO_PSDL_Scope::instance ()->get_si (); 00025 00026 ps_si->indent (); // start from current indentation level 00027 00028 // Generate the typecode information here 00029 *ps_si << "static const CORBA::Long _oc_"; 00030 00031 // Flat name generation. 00032 return 0; 00033 }