From abb7ccc29c0c1ba966f8d198b6348f91cd2fcb74 Mon Sep 17 00:00:00 2001 From: vzykov Date: Tue, 2 Feb 2010 11:13:27 +0000 Subject: Tue Feb 2 11:07:14 UTC 2010 Vladimir Zykov * tests/Bug_1361_Regression/server.cpp: * tests/Bug_1361_Regression/shutdown.cpp: * tests/Bug_1361_Regression/client.cpp: * tests/Bug_1361_Regression/Echo.cpp: * tests/Bug_1361_Regression/Bug_1361_Regression.mpc: Simplified the test. It used libTAO_Messaging without any need for it. * orbsvcs/orbsvcs/PortableGroup/PG_Property_Set_Find.h: * tao/AnyTypeCode/Any_Array_Impl_T.cpp: * tao/AnyTypeCode/Objref_TypeCode.cpp: * tao/PortableServer/Any_SArg_Traits.h: * tao/PortableServer/get_arg.h: * tao/PI_Server/Policy_Creator_T.h: * tao/Load_Protocol_Factory_T.h: * tao/TransportCurrent/IIOP_Current_Impl.h: * tao/Valuetype/Valuetype_Traits_Base_T.h: Added required include. * orbsvcs/orbsvcs/PortableGroup/UIPMC_Transport.h: * tao/TransportCurrent/Current_ORBInitializer.h: Removed unnecessary for templates export directive. * tao/ImR_Client/ServerObject.pidl: * tao/ImR_Client/ImplRepo.pidl: * tao/AnyTypeCode/BasicTypeTraits.h: * tao/IORTable/IORTable.pidl: * tao/Object_Key.pidl: * tao/TransportCurrent/Transport_Current.h: * tao/TransportCurrent/IIOP_Transport_Current.h: Added inclusion guards. * tao/AnyTypeCode/Union_TypeCode.h: Added necessary forward declaration. * tao/PortableServer/Direct_Collocation_Upcall_Wrapper.h: * tao/PortableServer/Upcall_Command.h: * tao/PortableServer/Upcall_Wrapper.h: * tao/Object_Reference_Traits_T.h: * tao/String_Traits_T.h: * tao/Value_Traits_T.h: * tao/Array_Traits_T.h: * tao/Utils/Servant_Var.inl: * tao/Valuetype/Valuetype_Traits_T.h: Changed 'ifndef ACE_LACKS_PRAGMA_ONCE' to 'if !defined (ACE_LACKS_PRAGMA_ONCE)'. So that ifndef is only used for inclusion guards in TAO. * tao/Transport.cpp: Changed 0 to false for boolean type. * tao/RTScheduling/ThreadAction.h: Fixed code that didn't compile. --- TAO/tao/ImR_Client/ImplRepo.pidl | 5 +++++ TAO/tao/ImR_Client/ServerObject.pidl | 5 +++++ 2 files changed, 10 insertions(+) (limited to 'TAO/tao/ImR_Client') diff --git a/TAO/tao/ImR_Client/ImplRepo.pidl b/TAO/tao/ImR_Client/ImplRepo.pidl index dbbabe5f789..2cbee7c7825 100644 --- a/TAO/tao/ImR_Client/ImplRepo.pidl +++ b/TAO/tao/ImR_Client/ImplRepo.pidl @@ -15,6 +15,9 @@ */ //============================================================================= +#ifndef TAO_IMRCLIENT_IMPLREPO_PIDL +#define TAO_IMRCLIENT_IMPLREPO_PIDL + #include "tao/ImR_Client/ServerObject.pidl" module ImplementationRepository @@ -174,3 +177,5 @@ module ImplementationRepository oneway void shutdown(in boolean activators, in boolean servers); }; }; + +#endif /* TAO_IMRCLIENT_IMPLREPO_PIDL */ diff --git a/TAO/tao/ImR_Client/ServerObject.pidl b/TAO/tao/ImR_Client/ServerObject.pidl index a22c1b3ea65..dff1b816359 100644 --- a/TAO/tao/ImR_Client/ServerObject.pidl +++ b/TAO/tao/ImR_Client/ServerObject.pidl @@ -15,6 +15,9 @@ */ //============================================================================= +#ifndef TAO_IMRCLIENT_SERVEROBJECT_PIDL +#define TAO_IMRCLIENT_SERVEROBJECT_PIDL + module ImplementationRepository { /** @@ -34,3 +37,5 @@ module ImplementationRepository oneway void shutdown (); }; }; + +#endif /* TAO_IMRCLIENT_SERVEROBJECT_PIDL */ -- cgit v1.2.1