diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2010-09-13 14:46:31 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2010-09-13 14:46:31 +0000 |
commit | ab293dc3deff83288e7aca167780c29c54f157ec (patch) | |
tree | 89aec95e84fdd7e86e751f061e743d44ffb376b5 /TAO | |
parent | f28b335f5eb18473a99a315655f78907462fc891 (diff) | |
download | ATCD-ab293dc3deff83288e7aca167780c29c54f157ec.tar.gz |
Mon Sep 13 14:42:47 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
* orbsvcs/orbsvcs/FtRtEvent/EventChannel/Identification_Service.cpp:
* orbsvcs/orbsvcs/FtRtEvent/Utils/Log.cpp:
* orbsvcs/orbsvcs/FtRtEvent/Utils/UUID.cpp:
* orbsvcs/orbsvcs/Notify/Name_Value_Pair.cpp:
* orbsvcs/orbsvcs/Notify/Random_File.cpp:
* tests/CodeSets/libs/UCS4_UTF16/WUCS4_UTF16.cpp:
Added needed includes
Diffstat (limited to 'TAO')
-rw-r--r-- | TAO/ChangeLog | 10 | ||||
-rw-r--r-- | TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/Identification_Service.cpp | 1 | ||||
-rw-r--r-- | TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/Log.cpp | 2 | ||||
-rw-r--r-- | TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/UUID.cpp | 4 | ||||
-rw-r--r-- | TAO/orbsvcs/orbsvcs/Notify/Name_Value_Pair.cpp | 1 | ||||
-rw-r--r-- | TAO/orbsvcs/orbsvcs/Notify/Random_File.cpp | 1 | ||||
-rw-r--r-- | TAO/tests/CodeSets/libs/UCS4_UTF16/WUCS4_UTF16.cpp | 1 |
7 files changed, 20 insertions, 0 deletions
diff --git a/TAO/ChangeLog b/TAO/ChangeLog index 0ffe324824f..209cf42c613 100644 --- a/TAO/ChangeLog +++ b/TAO/ChangeLog @@ -1,3 +1,13 @@ +Mon Sep 13 14:42:47 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl> + + * orbsvcs/orbsvcs/FtRtEvent/EventChannel/Identification_Service.cpp: + * orbsvcs/orbsvcs/FtRtEvent/Utils/Log.cpp: + * orbsvcs/orbsvcs/FtRtEvent/Utils/UUID.cpp: + * orbsvcs/orbsvcs/Notify/Name_Value_Pair.cpp: + * orbsvcs/orbsvcs/Notify/Random_File.cpp: + * tests/CodeSets/libs/UCS4_UTF16/WUCS4_UTF16.cpp: + Added needed includes + Mon Sep 13 13:53:20 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl> * tests/Portable_Interceptors/Benchmark/Interceptor_Type.cpp: diff --git a/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/Identification_Service.cpp b/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/Identification_Service.cpp index 43a7eed3f1a..16e3a70b34b 100644 --- a/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/Identification_Service.cpp +++ b/TAO/orbsvcs/orbsvcs/FtRtEvent/EventChannel/Identification_Service.cpp @@ -2,6 +2,7 @@ #include "orbsvcs/FtRtEvent/EventChannel/Identification_Service.h" #include "../Utils/UUID.h" +#include "ace/OS_NS_strings.h" TAO_BEGIN_VERSIONED_NAMESPACE_DECL diff --git a/TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/Log.cpp b/TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/Log.cpp index 44476a3fc23..ac826856adc 100644 --- a/TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/Log.cpp +++ b/TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/Log.cpp @@ -5,6 +5,8 @@ #include "orbsvcs/FtRtEvent/Utils/Log.inl" #endif /* __ACE_INLINE__ */ +#include "ace/OS_NS_stdio.h" + TAO_BEGIN_VERSIONED_NAMESPACE_DECL namespace TAO_FTRTEC { diff --git a/TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/UUID.cpp b/TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/UUID.cpp index 554754c4363..d98d5aca764 100644 --- a/TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/UUID.cpp +++ b/TAO/orbsvcs/orbsvcs/FtRtEvent/Utils/UUID.cpp @@ -6,6 +6,10 @@ #include "orbsvcs/FtRtEvent/Utils/UUID.inl" #endif /* __ACE_INLINE__ */ +#include "ace/OS_NS_unistd.h" +#include "ace/OS_NS_netdb.h" +#include "ace/OS_NS_sys_time.h" + TAO_BEGIN_VERSIONED_NAMESPACE_DECL namespace TAO_FtRt { diff --git a/TAO/orbsvcs/orbsvcs/Notify/Name_Value_Pair.cpp b/TAO/orbsvcs/orbsvcs/Notify/Name_Value_Pair.cpp index 6bbf76c99ab..8fda09e37df 100644 --- a/TAO/orbsvcs/orbsvcs/Notify/Name_Value_Pair.cpp +++ b/TAO/orbsvcs/orbsvcs/Notify/Name_Value_Pair.cpp @@ -3,6 +3,7 @@ #include "orbsvcs/Notify/Name_Value_Pair.h" #include "orbsvcs/Notify/Property_T.h" #include "ace/OS_NS_stdio.h" +#include "ace/OS_NS_ctype.h" namespace { diff --git a/TAO/orbsvcs/orbsvcs/Notify/Random_File.cpp b/TAO/orbsvcs/orbsvcs/Notify/Random_File.cpp index da226f7ef6f..bc6e3e90781 100644 --- a/TAO/orbsvcs/orbsvcs/Notify/Random_File.cpp +++ b/TAO/orbsvcs/orbsvcs/Notify/Random_File.cpp @@ -3,6 +3,7 @@ #include "orbsvcs/Notify/Random_File.h" #include "ace/Log_Msg.h" +#include "ace/OS_NS_fcntl.h" #include "tao/debug.h" //#define DEBUG_LEVEL 9 #ifndef DEBUG_LEVEL diff --git a/TAO/tests/CodeSets/libs/UCS4_UTF16/WUCS4_UTF16.cpp b/TAO/tests/CodeSets/libs/UCS4_UTF16/WUCS4_UTF16.cpp index 74ac6090595..2ff695969cd 100644 --- a/TAO/tests/CodeSets/libs/UCS4_UTF16/WUCS4_UTF16.cpp +++ b/TAO/tests/CodeSets/libs/UCS4_UTF16/WUCS4_UTF16.cpp @@ -19,6 +19,7 @@ // ============================================================================ #include "WUCS4_UTF16.h" +#include "ace/OS_Memory.h" // **************************************************************** |