diff options
Diffstat (limited to 'TAO/TAO_IDL/be')
28 files changed, 70 insertions, 469 deletions
diff --git a/TAO/TAO_IDL/be/be_codegen.cpp b/TAO/TAO_IDL/be/be_codegen.cpp index 522ad02e3b6..c46d02879fb 100644 --- a/TAO/TAO_IDL/be/be_codegen.cpp +++ b/TAO/TAO_IDL/be/be_codegen.cpp @@ -192,6 +192,43 @@ TAO_CodeGen::start_client_header (const char *fname) // Include Messaging skeleton file. this->gen_standard_include (this->client_header_, "tao/Messaging/Messaging.h"); + + // Turn on generation of files from the Valuetype library. + ACE_SET_BITS (idl_global->decls_seen_info_, + idl_global->decls_seen_masks.valuetype_seen_); + } + + idl_global->root (); + + if (ACE_BIT_ENABLED (idl_global->decls_seen_info_, + idl_global->decls_seen_masks.abstract_iface_seen_)) + { + // Include the AbstractBase file from the Valuetype library. + this->gen_standard_include (this->client_header_, + "tao/Valuetype/AbstractBase.h"); + + // Turn on generation of the rest of the Valuetype library files. + ACE_SET_BITS (idl_global->decls_seen_info_, + idl_global->decls_seen_masks.valuetype_seen_); + } + + if (ACE_BIT_ENABLED (idl_global->decls_seen_info_, + idl_global->decls_seen_masks.valuetype_seen_)) + { + // Include files from the Valuetype library. + this->gen_standard_include (this->client_header_, + "tao/Valuetype/ValueBase.h"); + this->gen_standard_include (this->client_header_, + "tao/Valuetype/Value_VarOut_T.h"); + this->gen_standard_include (this->client_header_, + "tao/Valuetype/Valuetype_Adapter_Impl.h"); + + // @@@@ (JP) These can be logically separated later + // with additional checks. + this->gen_standard_include (this->client_header_, + "tao/Valuetype/ValueFactory.h"); + this->gen_standard_include (this->client_header_, + "tao/Valuetype/Sequence_T.h"); } // Include the smart proxy base class if smart proxies are enabled. diff --git a/TAO/TAO_IDL/be/be_decl.cpp b/TAO/TAO_IDL/be/be_decl.cpp index 9869f858be6..702456a3547 100644 --- a/TAO/TAO_IDL/be/be_decl.cpp +++ b/TAO/TAO_IDL/be/be_decl.cpp @@ -39,10 +39,10 @@ #include "be_visitor.h" #include "utl_identifier.h" #include "ace/Log_Msg.h" -#include "ace/SString.h" +#include "ace/String_Base.h" -ACE_RCSID (be, - be_decl, +ACE_RCSID (be, + be_decl, "$Id$") // Default Constructor diff --git a/TAO/TAO_IDL/be/be_interface.cpp b/TAO/TAO_IDL/be/be_interface.cpp index 0676b799e1e..c5afbec50e6 100644 --- a/TAO/TAO_IDL/be/be_interface.cpp +++ b/TAO/TAO_IDL/be/be_interface.cpp @@ -87,6 +87,12 @@ be_interface::be_interface (UTL_ScopedName *n, { ACE_NEW (this->strategy_, be_interface_default_strategy (this)); + + if (abstract && this->is_defined ()) + { + ACE_SET_BITS (idl_global->decls_seen_info_, + idl_global->decls_seen_masks.abstract_iface_seen_); + } } be_interface::~be_interface (void) diff --git a/TAO/TAO_IDL/be/be_valuetype.cpp b/TAO/TAO_IDL/be/be_valuetype.cpp index f7c860b205a..21d78798182 100644 --- a/TAO/TAO_IDL/be/be_valuetype.cpp +++ b/TAO/TAO_IDL/be/be_valuetype.cpp @@ -26,6 +26,7 @@ #include "utl_identifier.h" #include "idl_defines.h" #include "nr_extern.h" +#include "global_extern.h" #include "ace/Log_Msg.h" ACE_RCSID (be, @@ -122,9 +123,11 @@ be_valuetype::be_valuetype (UTL_ScopedName *n, } } - if (n != 0 && this->fwd_helper_name_ == "") + // Set the flag that says we have a valuetype in this IDL file. + if (this->is_defined ()) { - this->gen_fwd_helper_name (); + ACE_SET_BITS (idl_global->decls_seen_info_, + idl_global->decls_seen_masks.valuetype_seen_); } } diff --git a/TAO/TAO_IDL/be/be_visitor_component/component_ch.cpp b/TAO/TAO_IDL/be/be_visitor_component/component_ch.cpp index 8d53201ecf5..ea3f89e51d8 100644 --- a/TAO/TAO_IDL/be/be_visitor_component/component_ch.cpp +++ b/TAO/TAO_IDL/be/be_visitor_component/component_ch.cpp @@ -1,3 +1,7 @@ +// +// $Id$ +// + // ============================================================================ // // = LIBRARY diff --git a/TAO/TAO_IDL/be/be_visitor_component/component_cs.cpp b/TAO/TAO_IDL/be/be_visitor_component/component_cs.cpp index e0e5af9ea7b..e08baec6be7 100644 --- a/TAO/TAO_IDL/be/be_visitor_component/component_cs.cpp +++ b/TAO/TAO_IDL/be/be_visitor_component/component_cs.cpp @@ -1,3 +1,7 @@ +// +// $Id$ +// + // ============================================================================ // // = LIBRARY diff --git a/TAO/TAO_IDL/be/be_visitor_interface/interface_ch.cpp b/TAO/TAO_IDL/be/be_visitor_interface/interface_ch.cpp index e8bd2a0255a..3a6e1243271 100644 --- a/TAO/TAO_IDL/be/be_visitor_interface/interface_ch.cpp +++ b/TAO/TAO_IDL/be/be_visitor_interface/interface_ch.cpp @@ -1,3 +1,7 @@ +// +// $Id$ +// + // ============================================================================ // // = LIBRARY @@ -17,7 +21,6 @@ ACE_RCSID (be_visitor_interface, interface_ch, "$Id$") - // ****************************************************** // Interface visitor for client header // ****************************************************** diff --git a/TAO/TAO_IDL/be/be_visitor_interface/interface_cs.cpp b/TAO/TAO_IDL/be/be_visitor_interface/interface_cs.cpp index e61a9214ad8..686c2f11395 100644 --- a/TAO/TAO_IDL/be/be_visitor_interface/interface_cs.cpp +++ b/TAO/TAO_IDL/be/be_visitor_interface/interface_cs.cpp @@ -1,3 +1,8 @@ +// +// $Id$ + +// + // ============================================================================ // // = LIBRARY @@ -18,6 +23,7 @@ ACE_RCSID (be_visitor_interface, interface_cs, "$Id$") + // ************************************************************ // Interface visitor for client stubs // ************************************************************ diff --git a/TAO/TAO_IDL/be/be_visitor_operation.cpp b/TAO/TAO_IDL/be/be_visitor_operation.cpp index 7031f1831e0..550ce4341cb 100644 --- a/TAO/TAO_IDL/be/be_visitor_operation.cpp +++ b/TAO/TAO_IDL/be/be_visitor_operation.cpp @@ -50,6 +50,7 @@ #include "be_visitor_argument.h" #include "be_visitor_context.h" #include "ace/Log_Msg.h" +#include "ace/String_Base.h" #include "be_visitor_operation/operation.cpp" #include "be_visitor_operation/arglist.cpp" diff --git a/TAO/TAO_IDL/be/be_visitor_sequence.cpp b/TAO/TAO_IDL/be/be_visitor_sequence.cpp index 9a2fccd2b79..b2fa38eadee 100644 --- a/TAO/TAO_IDL/be/be_visitor_sequence.cpp +++ b/TAO/TAO_IDL/be/be_visitor_sequence.cpp @@ -54,24 +54,6 @@ #include "be_visitor_sequence/sequence_ch.cpp" #include "be_visitor_sequence/sequence_ci.cpp" #include "be_visitor_sequence/sequence_cs.cpp" -#include "be_visitor_sequence/gen_unbounded_sequence_ch.cpp" -#include "be_visitor_sequence/gen_bounded_sequence_ch.cpp" -#include "be_visitor_sequence/gen_unbounded_obj_sequence_ch.cpp" -#include "be_visitor_sequence/gen_bounded_obj_sequence_ch.cpp" -#include "be_visitor_sequence/gen_bounded_str_sequence_ch.cpp" -#include "be_visitor_sequence/gen_bounded_wstr_sequence_ch.cpp" -#include "be_visitor_sequence/gen_unbounded_sequence_ci.cpp" -#include "be_visitor_sequence/gen_bounded_sequence_ci.cpp" -#include "be_visitor_sequence/gen_unbounded_obj_sequence_ci.cpp" -#include "be_visitor_sequence/gen_bounded_obj_sequence_ci.cpp" -#include "be_visitor_sequence/gen_bounded_str_sequence_ci.cpp" -#include "be_visitor_sequence/gen_bounded_wstr_sequence_ci.cpp" -#include "be_visitor_sequence/gen_unbounded_sequence_cs.cpp" -#include "be_visitor_sequence/gen_bounded_sequence_cs.cpp" -#include "be_visitor_sequence/gen_unbounded_obj_sequence_cs.cpp" -#include "be_visitor_sequence/gen_bounded_obj_sequence_cs.cpp" -#include "be_visitor_sequence/gen_bounded_str_sequence_cs.cpp" -#include "be_visitor_sequence/gen_bounded_wstr_sequence_cs.cpp" ACE_RCSID (be, be_visitor_sequence, diff --git a/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_obj_sequence_ch.cpp b/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_obj_sequence_ch.cpp deleted file mode 100644 index 73133b8fbf1..00000000000 --- a/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_obj_sequence_ch.cpp +++ /dev/null @@ -1,26 +0,0 @@ -// -// $Id$ -// - -// ============================================================================ -// -// = LIBRARY -// TAO IDL -// -// = FILENAME -// gen_bounded_obj_sequence_ch.cpp -// -// = DESCRIPTION -// Visitor generating code for Sequence in the client header -// -// = AUTHOR -// Michael Kircher -// -// Modifications by Aniruddha Gokhale -// -// ============================================================================ - -ACE_RCSID (be_visitor_sequence, - gen_bounded_obj_sequence_ch, - "$Id$") - diff --git a/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_obj_sequence_ci.cpp b/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_obj_sequence_ci.cpp deleted file mode 100644 index 100456ed2fc..00000000000 --- a/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_obj_sequence_ci.cpp +++ /dev/null @@ -1,25 +0,0 @@ -// -// $Id$ -// - -// ============================================================================ -// -// = LIBRARY -// TAO IDL -// -// = FILENAME -// gen_bounded_obj_sequence_ci.cpp -// -// = DESCRIPTION -// Visitor generating code for Sequence in the client inline -// -// = AUTHOR -// Michael Kircher -// -// Modifications by Aniruddha Gokhale -// ============================================================================ - -ACE_RCSID (be_visitor_sequence, - gen_bounded_obj_sequence_ci, - "$Id$") - diff --git a/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_obj_sequence_cs.cpp b/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_obj_sequence_cs.cpp deleted file mode 100644 index e3a08272644..00000000000 --- a/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_obj_sequence_cs.cpp +++ /dev/null @@ -1,25 +0,0 @@ -// -// $Id$ -// - -// ============================================================================ -// -// = LIBRARY -// TAO IDL -// -// = FILENAME -// gen_bounded_obj_sequence_cs.cpp -// -// = DESCRIPTION -// Visitor generating code for Sequence in the client impl -// -// = AUTHOR -// Michael Kircher -// -// Modifications by Aniruddha Gokhale -// ============================================================================ - -ACE_RCSID (be_visitor_sequence, - gen_bounded_obj_sequence_cs, - "$Id$") - diff --git a/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_sequence_ch.cpp b/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_sequence_ch.cpp deleted file mode 100644 index 27d6dd922ab..00000000000 --- a/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_sequence_ch.cpp +++ /dev/null @@ -1,24 +0,0 @@ -// $Id$ - -// ============================================================================ -// -// = LIBRARY -// TAO IDL -// -// = FILENAME -// gen_bounded_sequence_ch.cpp -// -// = DESCRIPTION -// Visitor generating code for Sequence in the client header -// -// = AUTHOR -// Michael Kircher -// -// Modifications by Aniruddha Gokhale -// -// ============================================================================ - -ACE_RCSID (be_visitor_sequence, - gen_bounded_sequence_ch, - "$Id$") - diff --git a/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_sequence_ci.cpp b/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_sequence_ci.cpp deleted file mode 100644 index ea7ac940810..00000000000 --- a/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_sequence_ci.cpp +++ /dev/null @@ -1,24 +0,0 @@ -// $Id$ - -// ============================================================================ -// -// = LIBRARY -// TAO IDL -// -// = FILENAME -// gen_bounded_sequence_ci.cpp -// -// = DESCRIPTION -// Visitor generating code for Sequence in the client inline -// -// = AUTHOR -// Michael Kircher -// -// Modifications by Aniruddha Gokhale -// -// ============================================================================ - -ACE_RCSID (be_visitor_sequence, - gen_bounded_sequence_ci, - "$Id$") - diff --git a/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_sequence_cs.cpp b/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_sequence_cs.cpp deleted file mode 100644 index 6c662d4f0c8..00000000000 --- a/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_sequence_cs.cpp +++ /dev/null @@ -1,24 +0,0 @@ -// $Id$ - -// ============================================================================ -// -// = LIBRARY -// TAO IDL -// -// = FILENAME -// gen_bounded_sequence_cs.cpp -// -// = DESCRIPTION -// Visitor generating code for Sequence in the client inline -// -// = AUTHOR -// Michael Kircher -// -// Modifications by Aniruddha Gokhale -// -// ============================================================================ - -ACE_RCSID (be_visitor_sequence, - gen_bounded_sequence_cs, - "$Id$") - diff --git a/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_str_sequence_ch.cpp b/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_str_sequence_ch.cpp deleted file mode 100644 index 00f5995e18c..00000000000 --- a/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_str_sequence_ch.cpp +++ /dev/null @@ -1,25 +0,0 @@ -// -// $Id$ -// - -// ============================================================================ -// -// = LIBRARY -// TAO IDL -// -// = FILENAME -// gen_bounded_str_sequence_ch.cpp -// -// = DESCRIPTION -// Visitor generating code for Sequence in the client header -// -// = AUTHOR -// Michael Kircher -// -// Modifications by Aniruddha Gokhale -// ============================================================================ - -ACE_RCSID (be_visitor_sequence, - gen_bounded_str_sequence_ch, - "$Id$") - diff --git a/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_str_sequence_ci.cpp b/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_str_sequence_ci.cpp deleted file mode 100644 index cf2327fbee7..00000000000 --- a/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_str_sequence_ci.cpp +++ /dev/null @@ -1,26 +0,0 @@ -// -// $Id$ -// - -// ============================================================================ -// -// = LIBRARY -// TAO IDL -// -// = FILENAME -// gen_bounded_str_sequence_ci.cpp -// -// = DESCRIPTION -// Visitor generating code for Sequence in the client inline -// -// = AUTHOR -// Michael Kircher -// -// Modifications by Aniruddha Gokhale -// -// ============================================================================ - -ACE_RCSID (be_visitor_sequence, - gen_bounded_str_sequence_ci, - "$Id$") - diff --git a/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_str_sequence_cs.cpp b/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_str_sequence_cs.cpp deleted file mode 100644 index 302fb866119..00000000000 --- a/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_str_sequence_cs.cpp +++ /dev/null @@ -1,26 +0,0 @@ -// -// $Id$ -// - -// ============================================================================ -// -// = LIBRARY -// TAO IDL -// -// = FILENAME -// gen_bounded_str_sequence_cs.cpp -// -// = DESCRIPTION -// Visitor generating code for Sequence in the client impl -// -// = AUTHOR -// Michael Kircher -// -// Modifications by Aniruddha Gokhale -// -// ============================================================================ - -ACE_RCSID (be_visitor_sequence, - gen_bounded_str_sequence_cs, - "$Id$") - diff --git a/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_wstr_sequence_ch.cpp b/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_wstr_sequence_ch.cpp deleted file mode 100644 index 57aaaf56ff9..00000000000 --- a/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_wstr_sequence_ch.cpp +++ /dev/null @@ -1,24 +0,0 @@ -// -// $Id$ -// - -// ============================================================================ -// -// = LIBRARY -// TAO IDL -// -// = FILENAME -// gen_bounded_wstr_sequence_ch.cpp -// -// = DESCRIPTION -// Visitor generating code for bounded wstring sequence in the client header -// -// = AUTHOR -// Jeff Parsons <parsons@cs.wustl.edu> -// -// ============================================================================ - -ACE_RCSID (be_visitor_sequence, - gen_bounded_wstr_sequence_ch, - "$Id$") - diff --git a/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_wstr_sequence_ci.cpp b/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_wstr_sequence_ci.cpp deleted file mode 100644 index b380c4c640c..00000000000 --- a/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_wstr_sequence_ci.cpp +++ /dev/null @@ -1,24 +0,0 @@ -// -// $Id$ -// - -// ============================================================================ -// -// = LIBRARY -// TAO IDL -// -// = FILENAME -// gen_bounded_wstr_sequence_ci.cpp -// -// = DESCRIPTION -// Visitor generating code for bounded wstring sequence in the client inline -// -// = AUTHOR -// Jeff Parsons <parsons@cs.wustl.edu> -// -// ============================================================================ - -ACE_RCSID (be_visitor_sequence, - gen_bounded_wstr_sequence_ci, - "$Id$") - diff --git a/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_wstr_sequence_cs.cpp b/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_wstr_sequence_cs.cpp deleted file mode 100644 index b7f0ccacc28..00000000000 --- a/TAO/TAO_IDL/be/be_visitor_sequence/gen_bounded_wstr_sequence_cs.cpp +++ /dev/null @@ -1,24 +0,0 @@ -// -// $Id$ -// - -// ============================================================================ -// -// = LIBRARY -// TAO IDL -// -// = FILENAME -// gen_bounded_wstr_sequence_cs.cpp -// -// = DESCRIPTION -// Visitor generating code for bounded wstring sequence in the client source -// -// = AUTHOR -// Jeff Parsons <parsons@cs.wustl.edu> -// -// ============================================================================ - -ACE_RCSID (be_visitor_sequence, - gen_bounded_wstr_sequence_cs, - "$Id$") - diff --git a/TAO/TAO_IDL/be/be_visitor_sequence/gen_unbounded_obj_sequence_ch.cpp b/TAO/TAO_IDL/be/be_visitor_sequence/gen_unbounded_obj_sequence_ch.cpp deleted file mode 100644 index 1e20fc4ede0..00000000000 --- a/TAO/TAO_IDL/be/be_visitor_sequence/gen_unbounded_obj_sequence_ch.cpp +++ /dev/null @@ -1,26 +0,0 @@ -// -// $Id$ -// - -// ============================================================================ -// -// = LIBRARY -// TAO IDL -// -// = FILENAME -// gen_unbounded_obj_sequence_ch.cpp -// -// = DESCRIPTION -// Visitor generating code for Sequence in the client header -// -// = AUTHOR -// Michael Kircher -// -// Modifications by Aniruddha Gokhale -// -// ============================================================================ - -ACE_RCSID (be_visitor_sequence, - gen_unbounded_obj_sequence_ch, - "$Id$") - diff --git a/TAO/TAO_IDL/be/be_visitor_sequence/gen_unbounded_obj_sequence_ci.cpp b/TAO/TAO_IDL/be/be_visitor_sequence/gen_unbounded_obj_sequence_ci.cpp deleted file mode 100644 index 27fa6b543fb..00000000000 --- a/TAO/TAO_IDL/be/be_visitor_sequence/gen_unbounded_obj_sequence_ci.cpp +++ /dev/null @@ -1,25 +0,0 @@ -// -// $Id$ -// - -// ============================================================================ -// -// = LIBRARY -// TAO IDL -// -// = FILENAME -// gen_unbounded_obj_sequence_ci.cpp -// -// = DESCRIPTION -// Visitor generating code for Sequence in the client inline. -// -// = AUTHOR -// Michael Kircher -// -// Modifications by Aniruddha Gokhale -// ============================================================================ - -ACE_RCSID (be_visitor_sequence, - gen_unbounded_obj_sequence_ci, - "$Id$") - diff --git a/TAO/TAO_IDL/be/be_visitor_sequence/gen_unbounded_obj_sequence_cs.cpp b/TAO/TAO_IDL/be/be_visitor_sequence/gen_unbounded_obj_sequence_cs.cpp deleted file mode 100644 index bb879229dda..00000000000 --- a/TAO/TAO_IDL/be/be_visitor_sequence/gen_unbounded_obj_sequence_cs.cpp +++ /dev/null @@ -1,25 +0,0 @@ -// -// $Id$ -// - -// ============================================================================ -// -// = LIBRARY -// TAO IDL -// -// = FILENAME -// gen_unbounded_obj_sequence_cs.cpp -// -// = DESCRIPTION -// Visitor generating code for Sequence in the client inline. -// -// = AUTHOR -// Michael Kircher -// -// Modifications by Aniruddha Gokhale -// ============================================================================ - -ACE_RCSID (be_visitor_sequence, - gen_unbounded_obj_sequence_cs, - "$Id$") - diff --git a/TAO/TAO_IDL/be/be_visitor_sequence/gen_unbounded_sequence_ch.cpp b/TAO/TAO_IDL/be/be_visitor_sequence/gen_unbounded_sequence_ch.cpp deleted file mode 100644 index 88913fd39c5..00000000000 --- a/TAO/TAO_IDL/be/be_visitor_sequence/gen_unbounded_sequence_ch.cpp +++ /dev/null @@ -1,24 +0,0 @@ -// $Id$ - -// ============================================================================ -// -// = LIBRARY -// TAO IDL -// -// = FILENAME -// gen_unbounded_sequence_ch.cpp -// -// = DESCRIPTION -// Visitor generating code for Sequence in the client header -// -// = AUTHOR -// Michael Kircher -// -// Modifications by Aniruddha Gokhale -// -// ============================================================================ - -ACE_RCSID (be_visitor_sequence, - gen_unbounded_sequence_ch, - "$Id$") - diff --git a/TAO/TAO_IDL/be/be_visitor_sequence/gen_unbounded_sequence_ci.cpp b/TAO/TAO_IDL/be/be_visitor_sequence/gen_unbounded_sequence_ci.cpp deleted file mode 100644 index 3d6deb0a35b..00000000000 --- a/TAO/TAO_IDL/be/be_visitor_sequence/gen_unbounded_sequence_ci.cpp +++ /dev/null @@ -1,24 +0,0 @@ -// $Id$ - -// ============================================================================ -// -// = LIBRARY -// TAO IDL -// -// = FILENAME -// gen_unbounded_sequence_ci.cpp -// -// = DESCRIPTION -// Visitor generating code for Sequence in the client inline -// -// = AUTHOR -// Michael Kircher -// -// Modifications by Aniruddha Gokhale -// -// ============================================================================ - -ACE_RCSID (be_visitor_sequence, - gen_unbounded_sequence_ci, - "$Id$") - diff --git a/TAO/TAO_IDL/be/be_visitor_sequence/gen_unbounded_sequence_cs.cpp b/TAO/TAO_IDL/be/be_visitor_sequence/gen_unbounded_sequence_cs.cpp deleted file mode 100644 index badbbec605d..00000000000 --- a/TAO/TAO_IDL/be/be_visitor_sequence/gen_unbounded_sequence_cs.cpp +++ /dev/null @@ -1,24 +0,0 @@ -// $Id$ - -// ============================================================================ -// -// = LIBRARY -// TAO IDL -// -// = FILENAME -// gen_unbounded_sequence_cs.cpp -// -// = DESCRIPTION -// Visitor generating code for Sequence in the client impl -// -// = AUTHOR -// Michael Kircher -// -// Modifications by Aniruddha Gokhale -// -// ============================================================================ - -ACE_RCSID (be_visitor_sequence, - gen_unbounded_sequence_cs, - "$Id$") - |