diff options
author | jtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2007-11-30 00:40:17 +0000 |
---|---|---|
committer | jtc <jtc@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2007-11-30 00:40:17 +0000 |
commit | f7860fd1ce2677a11d3f89d7007c89c3c96d3bb8 (patch) | |
tree | bc46f9a1e971dc95bed25081df9df8e37b72158d | |
parent | cbedd53696ab2290950c5172afaf226dac4f72a9 (diff) | |
download | ATCD-f7860fd1ce2677a11d3f89d7007c89c3c96d3bb8.tar.gz |
ChangeLogTag: Fri Nov 30 00:38:11 UTC 2007 J.T. Conklin <jtc@acorntoolworks.com>
27 files changed, 86 insertions, 1 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog index 8bb0aa5580b..a19f974e85a 100644 --- a/TAO/ChangeLog +++ b/TAO/ChangeLog @@ -1,3 +1,62 @@ +Fri Nov 30 00:38:11 UTC 2007 J.T. Conklin <jtc@acorntoolworks.com> + + * TAO_IDL/be/be_visitor_template_export.cpp: + * examples/RTScheduling/Task_Stats.inl: + * orbsvcs/tests/unit/Notify/MC/Statistic/Statistic.cpp: + * tao/Codeset/Codeset_Translator_Factory_T.cpp: + * tests/Bug_2677_Regression/server.cpp: + * tests/Bug_2735_Regression/server.cpp: + * tests/Bug_2936_Regression/bug2936.cpp: + * tests/Param_Test/options.cpp: + + Add #include "ace/Log_Msg.h". + + * tao/AnyTypeCode/Struct_TypeCode.cpp: + * tao/PolicyC.cpp: + + Add #include "tao/SystemException.h" + + * tao/DiffServPolicy/Server_Network_Priority_Policy.cpp: + * tao/DynamicInterface/DII_Arguments_Converter_Impl.cpp: + * tao/IORManipulation/IORManip_IIOP_Filter.cpp: + * tao/Messaging/AMI_Arguments_Converter_Impl.cpp: + * tao/Messaging/ExceptionHolder_i.cpp: + + Add #include "tao/CDR.h" + + * tao/DynamicAny/DynUnion_i.cpp: + + Add #include "tao/DynEnum_i.h" + + * tao/GIOP_Message_Base.h: + * tao/Invocation_Base.h: + * tao/Messaging/AMH_Response_Handler.h: + * tao/operation_details.h: + + Add #include "tao/Exception.h" + + * tao/Request_Dispatcher.h: + + Add #include "tao/TAO_Export.h" + + * orbsvcs/tests/unit/Notify/MC/NotificationServiceMonitor/NotificationServiceMonitor.cpp: + * orbsvcs/tests/unit/Notify/MC/Statistic_Registry/Statistic_Registry.cpp: + + Add #include "tao/TAO_Singleton_Manager.h" + + * tests/Bug_1383_Regression/SimpleClient.cpp: + * tests/Portable_Interceptors/Bug_2510_Regression/client.cpp: + + Add #include "ace/Thread.h" + + * tests/Param_Test/anyop.cpp: + + Add #include "tao/Stub.h" + + These headers are included implicitly by template *.cpp files on + platforms where ACE_TEMPLATES_REQUIRE_SOURCE, but are needed for + those that don't. + Thu Nov 29 23:58:21 UTC 2007 Jeff Parsons <j.parsons@vanderbilt.edu> * orbsvcs/orbsvcs/IFRService/ValueDef_i.cpp: diff --git a/TAO/TAO_IDL/be/be_visitor_template_export.cpp b/TAO/TAO_IDL/be/be_visitor_template_export.cpp index 6fb14458121..38a607b29bd 100644 --- a/TAO/TAO_IDL/be/be_visitor_template_export.cpp +++ b/TAO/TAO_IDL/be/be_visitor_template_export.cpp @@ -19,6 +19,7 @@ #include "be_extern.h" #include "be_helper.h" #include "be_predefined_type.h" +#include "ace/Log_Msg.h" ACE_RCSID (be, be_visitor_template_export, diff --git a/TAO/examples/RTScheduling/Task_Stats.inl b/TAO/examples/RTScheduling/Task_Stats.inl index 3b50f8c52a4..0971502bcc0 100644 --- a/TAO/examples/RTScheduling/Task_Stats.inl +++ b/TAO/examples/RTScheduling/Task_Stats.inl @@ -1,5 +1,7 @@ //$Id$ +#include "ace/Log_Msg.h" + ACE_INLINE int Task_Stats::sample (ACE_UINT32 thr_run_time, int thr_count) { diff --git a/TAO/orbsvcs/tests/unit/Notify/MC/NotificationServiceMonitor/NotificationServiceMonitor.cpp b/TAO/orbsvcs/tests/unit/Notify/MC/NotificationServiceMonitor/NotificationServiceMonitor.cpp index a1a23606db9..1fce3c59656 100644 --- a/TAO/orbsvcs/tests/unit/Notify/MC/NotificationServiceMonitor/NotificationServiceMonitor.cpp +++ b/TAO/orbsvcs/tests/unit/Notify/MC/NotificationServiceMonitor/NotificationServiceMonitor.cpp @@ -2,6 +2,7 @@ #include "orbsvcs/Notify/MonitorControl/Statistic_Registry.h" #include "orbsvcs/Notify/MonitorControl/Statistic.h" #include "orbsvcs/Notify/MonitorControl/NotificationServiceMonitor_i.h" +#include "tao/TAO_Singleton_Manager.h" void error(const char* msg) diff --git a/TAO/orbsvcs/tests/unit/Notify/MC/Statistic/Statistic.cpp b/TAO/orbsvcs/tests/unit/Notify/MC/Statistic/Statistic.cpp index 8c20349d56f..ef1f6af02c5 100644 --- a/TAO/orbsvcs/tests/unit/Notify/MC/Statistic/Statistic.cpp +++ b/TAO/orbsvcs/tests/unit/Notify/MC/Statistic/Statistic.cpp @@ -1,5 +1,6 @@ // $Id$ #include "orbsvcs/Notify/MonitorControl/Statistic.h" +#include "ace/Log_Msg.h" void error(const char* msg) diff --git a/TAO/orbsvcs/tests/unit/Notify/MC/Statistic_Registry/Statistic_Registry.cpp b/TAO/orbsvcs/tests/unit/Notify/MC/Statistic_Registry/Statistic_Registry.cpp index 42d6b7b5839..09285576ded 100644 --- a/TAO/orbsvcs/tests/unit/Notify/MC/Statistic_Registry/Statistic_Registry.cpp +++ b/TAO/orbsvcs/tests/unit/Notify/MC/Statistic_Registry/Statistic_Registry.cpp @@ -1,6 +1,7 @@ // $Id$ #include "orbsvcs/Notify/MonitorControl/Statistic_Registry.h" #include "orbsvcs/Notify/MonitorControl/Statistic.h" +#include "tao/TAO_Singleton_Manager.h" void error(const char* msg) diff --git a/TAO/tao/AnyTypeCode/Struct_TypeCode.cpp b/TAO/tao/AnyTypeCode/Struct_TypeCode.cpp index 9e14682e7be..b920fd9f483 100644 --- a/TAO/tao/AnyTypeCode/Struct_TypeCode.cpp +++ b/TAO/tao/AnyTypeCode/Struct_TypeCode.cpp @@ -9,6 +9,7 @@ #include "tao/ORB_Core.h" #include "tao/TypeCodeFactory_Adapter.h" #include "tao/CDR.h" +#include "tao/SystemException.h" #ifndef __ACE_INLINE__ diff --git a/TAO/tao/Codeset/Codeset_Translator_Factory_T.cpp b/TAO/tao/Codeset/Codeset_Translator_Factory_T.cpp index 69f842bf574..83571c9d6bb 100644 --- a/TAO/tao/Codeset/Codeset_Translator_Factory_T.cpp +++ b/TAO/tao/Codeset/Codeset_Translator_Factory_T.cpp @@ -18,6 +18,7 @@ #include "tao/Codeset/Codeset_Translator_Factory_T.h" #include "tao/debug.h" #include "tao/CDR.h" +#include "ace/Log_Msg.h" TAO_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/TAO/tao/DiffServPolicy/Server_Network_Priority_Policy.cpp b/TAO/tao/DiffServPolicy/Server_Network_Priority_Policy.cpp index c779ac07c3a..5884dc4eb30 100644 --- a/TAO/tao/DiffServPolicy/Server_Network_Priority_Policy.cpp +++ b/TAO/tao/DiffServPolicy/Server_Network_Priority_Policy.cpp @@ -3,6 +3,7 @@ #include "tao/DiffServPolicy/Server_Network_Priority_Policy.h" #include "tao/SystemException.h" #include "tao/ORB_Constants.h" +#include "tao/CDR.h" ACE_RCSID (DiffServPolicy, Server_Network_Priority_Policy, diff --git a/TAO/tao/DynamicAny/DynUnion_i.cpp b/TAO/tao/DynamicAny/DynUnion_i.cpp index 2e32ed48a38..b777fb5618d 100644 --- a/TAO/tao/DynamicAny/DynUnion_i.cpp +++ b/TAO/tao/DynamicAny/DynUnion_i.cpp @@ -1,6 +1,7 @@ // $Id$ #include "tao/DynamicAny/DynUnion_i.h" +#include "tao/DynamicAny/DynEnum_i.h" #include "tao/DynamicAny/DynAnyFactory.h" #include "tao/DynamicAny/DynAnyUtils_T.h" diff --git a/TAO/tao/DynamicInterface/DII_Arguments_Converter_Impl.cpp b/TAO/tao/DynamicInterface/DII_Arguments_Converter_Impl.cpp index b790000bba2..e70720eec1c 100644 --- a/TAO/tao/DynamicInterface/DII_Arguments_Converter_Impl.cpp +++ b/TAO/tao/DynamicInterface/DII_Arguments_Converter_Impl.cpp @@ -5,6 +5,7 @@ #include "tao/AnyTypeCode/Any_Impl.h" #include "tao/operation_details.h" #include "tao/SystemException.h" +#include "tao/CDR.h" ACE_RCSID (DynamicInterface, DII_Arguments_Converter_Impl, diff --git a/TAO/tao/GIOP_Message_Base.h b/TAO/tao/GIOP_Message_Base.h index c86d01a088c..701a0f110d6 100644 --- a/TAO/tao/GIOP_Message_Base.h +++ b/TAO/tao/GIOP_Message_Base.h @@ -22,6 +22,7 @@ # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ +#include "tao/Exception.h" #include "tao/Pluggable_Messaging_Utils.h" #include "tao/GIOP_Message_Generator_Parser_Impl.h" #include "tao/GIOP_Utils.h" diff --git a/TAO/tao/IORManipulation/IORManip_IIOP_Filter.cpp b/TAO/tao/IORManipulation/IORManip_IIOP_Filter.cpp index d6d3c49e740..e75ceca9d99 100644 --- a/TAO/tao/IORManipulation/IORManip_IIOP_Filter.cpp +++ b/TAO/tao/IORManipulation/IORManip_IIOP_Filter.cpp @@ -7,6 +7,7 @@ #include "tao/IORManipulation/IORManip_Loader.h" #include "tao/IIOP_Profile.h" #include "tao/MProfile.h" +#include "tao/CDR.h" ACE_RCSID (IORManip_IIOP_Filter, IORManip_IIOP_Filter, "$Id$") diff --git a/TAO/tao/Invocation_Base.h b/TAO/tao/Invocation_Base.h index ff1428ab04d..625601957bc 100644 --- a/TAO/tao/Invocation_Base.h +++ b/TAO/tao/Invocation_Base.h @@ -25,6 +25,7 @@ #include "tao/Invocation_Utils.h" #if TAO_HAS_INTERCEPTORS == 1 +#include "tao/Exception.h" #include "tao/PI_ForwardC.h" #include "tao/ClientRequestInterceptor_Adapter.h" #endif /* TAO_HAS_INTERCEPTORS == 1 */ diff --git a/TAO/tao/Messaging/AMH_Response_Handler.h b/TAO/tao/Messaging/AMH_Response_Handler.h index 7bcd45b886e..9d36b060143 100644 --- a/TAO/tao/Messaging/AMH_Response_Handler.h +++ b/TAO/tao/Messaging/AMH_Response_Handler.h @@ -24,6 +24,7 @@ #include "ace/Synch_Traits.h" #include "ace/Thread_Mutex.h" #include "ace/Null_Mutex.h" +#include "tao/Exception.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) # pragma once diff --git a/TAO/tao/Messaging/AMI_Arguments_Converter_Impl.cpp b/TAO/tao/Messaging/AMI_Arguments_Converter_Impl.cpp index 144ff7ed9f4..2bbecec5547 100644 --- a/TAO/tao/Messaging/AMI_Arguments_Converter_Impl.cpp +++ b/TAO/tao/Messaging/AMI_Arguments_Converter_Impl.cpp @@ -4,6 +4,7 @@ #include "tao/SystemException.h" #include "tao/Pluggable_Messaging_Utils.h" #include "tao/Reply_Dispatcher.h" +#include "tao/CDR.h" ACE_RCSID (Messaging, AMI_Arguments_Converter_Impl, diff --git a/TAO/tao/Messaging/ExceptionHolder_i.cpp b/TAO/tao/Messaging/ExceptionHolder_i.cpp index 07bf028880e..88c7f85c6f2 100644 --- a/TAO/tao/Messaging/ExceptionHolder_i.cpp +++ b/TAO/tao/Messaging/ExceptionHolder_i.cpp @@ -9,6 +9,7 @@ ACE_RCSID (Messaging, #include "tao/Messaging/Messaging.h" #include "tao/Exception_Data.h" +#include "tao/CDR.h" TAO_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/TAO/tao/PolicyC.cpp b/TAO/tao/PolicyC.cpp index f066362ceba..040d3a55be5 100644 --- a/TAO/tao/PolicyC.cpp +++ b/TAO/tao/PolicyC.cpp @@ -31,6 +31,7 @@ #include "tao/PolicyC.h" #include "tao/CDR.h" +#include "tao/SystemException.h" #include "tao/Invocation_Adapter.h" #include "tao/Object_T.h" #include "tao/Basic_Arguments.h" diff --git a/TAO/tao/Request_Dispatcher.h b/TAO/tao/Request_Dispatcher.h index 559993dfe33..69c5a1c7ea3 100644 --- a/TAO/tao/Request_Dispatcher.h +++ b/TAO/tao/Request_Dispatcher.h @@ -24,9 +24,9 @@ # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ +#include "tao/TAO_Export.h" #include "tao/Pseudo_VarOut_T.h" - TAO_BEGIN_VERSIONED_NAMESPACE_DECL class TAO_ORB_Core; diff --git a/TAO/tao/operation_details.h b/TAO/tao/operation_details.h index cd4ac8c27ba..d2cee96e030 100644 --- a/TAO/tao/operation_details.h +++ b/TAO/tao/operation_details.h @@ -20,6 +20,7 @@ # pragma once #endif /* ACE_LACKS_PRAGMA_ONCE */ +#include "tao/Exception.h" #include "tao/TimeBaseC.h" #include "tao/target_specification.h" diff --git a/TAO/tests/Bug_1383_Regression/SimpleClient.cpp b/TAO/tests/Bug_1383_Regression/SimpleClient.cpp index 8208c7a5ae9..de2d75756f6 100644 --- a/TAO/tests/Bug_1383_Regression/SimpleClient.cpp +++ b/TAO/tests/Bug_1383_Regression/SimpleClient.cpp @@ -2,6 +2,7 @@ #include "tao/corba.h" #include "ace/OS_NS_unistd.h" +#include "ace/Thread.h" #include "simpleC.h" #include "Callee_i.h" #include "tao/IORManipulation/IORManip_Loader.h" diff --git a/TAO/tests/Bug_2677_Regression/server.cpp b/TAO/tests/Bug_2677_Regression/server.cpp index 8bf889856a6..bcfdd64fc62 100644 --- a/TAO/tests/Bug_2677_Regression/server.cpp +++ b/TAO/tests/Bug_2677_Regression/server.cpp @@ -1,6 +1,7 @@ // $Id$ #include "ace/OS.h" #include "ace/Service_Config.h" +#include "ace/Log_Msg.h" int ACE_TMAIN(int, ACE_TCHAR *[]) diff --git a/TAO/tests/Bug_2735_Regression/server.cpp b/TAO/tests/Bug_2735_Regression/server.cpp index 46cd8638c98..5fa0f1e4591 100644 --- a/TAO/tests/Bug_2735_Regression/server.cpp +++ b/TAO/tests/Bug_2735_Regression/server.cpp @@ -3,6 +3,7 @@ #include "tao/ORB.h" #include "ace/Get_Opt.h" #include "ace/Service_Config.h" +#include "ace/Log_Msg.h" ACE_RCSID (Bug_2735_Regression, server, diff --git a/TAO/tests/Bug_2936_Regression/bug2936.cpp b/TAO/tests/Bug_2936_Regression/bug2936.cpp index 24e2d735f81..6660cac066d 100644 --- a/TAO/tests/Bug_2936_Regression/bug2936.cpp +++ b/TAO/tests/Bug_2936_Regression/bug2936.cpp @@ -2,6 +2,7 @@ #include "ace/OS.h" #include "ace/Service_Config.h" +#include "ace/Log_Msg.h" char const * const scpc_orbId = "testDllOrb"; diff --git a/TAO/tests/Param_Test/anyop.cpp b/TAO/tests/Param_Test/anyop.cpp index 2ef33f6fdcc..86b01f65b47 100644 --- a/TAO/tests/Param_Test/anyop.cpp +++ b/TAO/tests/Param_Test/anyop.cpp @@ -23,6 +23,7 @@ // Not normally needed, but we create an object reference in this test, // and we have to narrow it. #include "tao/Object_T.h" +#include "tao/Stub.h" #include "ace/Get_Opt.h" diff --git a/TAO/tests/Param_Test/options.cpp b/TAO/tests/Param_Test/options.cpp index 493e73dfa7c..2bd26e08726 100644 --- a/TAO/tests/Param_Test/options.cpp +++ b/TAO/tests/Param_Test/options.cpp @@ -22,6 +22,7 @@ #include "ace/Get_Opt.h" #include "ace/OS_NS_string.h" #include "ace/OS_NS_fcntl.h" +#include "ace/Log_Msg.h" ACE_RCSID (Param_Test, options, diff --git a/TAO/tests/Portable_Interceptors/Bug_2510_Regression/client.cpp b/TAO/tests/Portable_Interceptors/Bug_2510_Regression/client.cpp index b2354197f86..f05d89d2d54 100644 --- a/TAO/tests/Portable_Interceptors/Bug_2510_Regression/client.cpp +++ b/TAO/tests/Portable_Interceptors/Bug_2510_Regression/client.cpp @@ -2,6 +2,7 @@ #include "ace/Get_Opt.h" #include "ace/Synch.h" +#include "ace/Thread.h" #include "testC.h" #include "Client_ORBInitializer.h" #include "tao/ORBInitializer_Registry.h" |