diff options
author | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-01-29 17:03:24 +0000 |
---|---|---|
committer | coryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-01-29 17:03:24 +0000 |
commit | 395984ea5d5e1e2da9266fd19d889b302d8dc311 (patch) | |
tree | 23baeab6246b7f63ec35b3afa34130fb42ac1fd4 | |
parent | d1fae18210bad110938bb0b7705bb6997b386bc0 (diff) | |
download | ATCD-395984ea5d5e1e2da9266fd19d889b302d8dc311.tar.gz |
ChangeLogTag:Tue Jan 29 09:01:41 2002 Carlos O'Ryan <coryan@uci.edu>
-rw-r--r-- | TAO/ChangeLogs/ChangeLog-02a | 8 | ||||
-rw-r--r-- | TAO/TAO_IDL/be/be_interface.cpp | 2 | ||||
-rw-r--r-- | TAO/TAO_IDL/be_include/be_visitor_interface/amh_ch.h | 8 |
3 files changed, 14 insertions, 4 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a index cddfde595c4..f3a98f636e4 100644 --- a/TAO/ChangeLogs/ChangeLog-02a +++ b/TAO/ChangeLogs/ChangeLog-02a @@ -1,3 +1,11 @@ +Tue Jan 29 09:01:41 2002 Carlos O'Ryan <coryan@uci.edu> + + * TAO_IDL/be/be_interface.cpp: + Removed bogus semicolon. + + * TAO_IDL/be_include/be_visitor_interface/amh_ch.h: + Changed broken private inheritance to public inheritance. + Tue Jan 29 08:57:31 2002 Carlos O'Ryan <coryan@uci.edu> * tao/Messaging.h: diff --git a/TAO/TAO_IDL/be/be_interface.cpp b/TAO/TAO_IDL/be/be_interface.cpp index 5124e7aa803..ea54e854ab2 100644 --- a/TAO/TAO_IDL/be/be_interface.cpp +++ b/TAO/TAO_IDL/be/be_interface.cpp @@ -1055,7 +1055,7 @@ TAO_IDL_Gen_OpTable_Worker::emit (be_interface * /* derived_interface */, // Generate entries for the derived class using the properties of its // ancestors. return base_interface->gen_optable_entries (this->skeleton_name_, os); -}; +} int be_interface::gen_operation_table (const char *flat_name, diff --git a/TAO/TAO_IDL/be_include/be_visitor_interface/amh_ch.h b/TAO/TAO_IDL/be_include/be_visitor_interface/amh_ch.h index 50ce5434034..35e5a07ca48 100644 --- a/TAO/TAO_IDL/be_include/be_visitor_interface/amh_ch.h +++ b/TAO/TAO_IDL/be_include/be_visitor_interface/amh_ch.h @@ -12,7 +12,8 @@ // // = DESCRIPTION // Concrete visitor for the AMH-RH Interface node. -// This one provides code generation for interfaces in the client header. +// This one provides code generation for interfaces in the client +// header. // // = AUTHOR // Mayur Deshpande @@ -22,14 +23,15 @@ #ifndef _BE_INTERFACE_AMH_INTERFACE_CH_H_ #define _BE_INTERFACE_AMH_INTERFACE_CH_H_ -class be_visitor_amh_interface_ch : be_visitor_interface +class be_visitor_amh_interface_ch : public be_visitor_interface { // // = TITLE // be_visitor_amh_interface_ch // // = DESCRIPTION - // This is a concrete visitor to generate the client header for AMH interface + // This is a concrete visitor to generate the client header for + // AMH interface // public: be_visitor_amh_interface_ch (be_visitor_context *ctx); |