diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 2002-06-04 23:55:23 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 2002-06-04 23:55:23 +0000 |
commit | 03d7e93a1f55528f5bc630ac95ca0e9847ccd011 (patch) | |
tree | cb033689b613e03ec07680793b1e581e056bbf6e | |
parent | bfeabfc9997c6874656ae139c17d4dcdd0fdda06 (diff) | |
download | ATCD-03d7e93a1f55528f5bc630ac95ca0e9847ccd011.tar.gz |
ChangeLogTag:Tue Jun 04 16:47:27 2002 Ossama Othman <ossama@uci.edu>
-rw-r--r-- | ChangeLog | 11 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-02a | 11 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-03a | 11 | ||||
-rw-r--r-- | ace/Service_Config.cpp | 1 | ||||
-rw-r--r-- | ace/Service_Config.h | 9 |
5 files changed, 41 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index 420b890c2de..fa02cf1db4f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +Tue Jun 04 16:47:27 2002 Ossama Othman <ossama@uci.edu> + + * ace/Service_Config.h: + + No need to include "ace/DLL.h". Forward declaring ACE_DLL is + enough. + + * ace/Service_Config.cpp: + + Include "ace/DLL.h" to pull in ACE_DLL class declaration. + Tue Jun 04 16:34:18 2002 Ossama Othman <ossama@uci.edu> * ace/Service_Config.cpp: diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a index 420b890c2de..fa02cf1db4f 100644 --- a/ChangeLogs/ChangeLog-02a +++ b/ChangeLogs/ChangeLog-02a @@ -1,3 +1,14 @@ +Tue Jun 04 16:47:27 2002 Ossama Othman <ossama@uci.edu> + + * ace/Service_Config.h: + + No need to include "ace/DLL.h". Forward declaring ACE_DLL is + enough. + + * ace/Service_Config.cpp: + + Include "ace/DLL.h" to pull in ACE_DLL class declaration. + Tue Jun 04 16:34:18 2002 Ossama Othman <ossama@uci.edu> * ace/Service_Config.cpp: diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a index 420b890c2de..fa02cf1db4f 100644 --- a/ChangeLogs/ChangeLog-03a +++ b/ChangeLogs/ChangeLog-03a @@ -1,3 +1,14 @@ +Tue Jun 04 16:47:27 2002 Ossama Othman <ossama@uci.edu> + + * ace/Service_Config.h: + + No need to include "ace/DLL.h". Forward declaring ACE_DLL is + enough. + + * ace/Service_Config.cpp: + + Include "ace/DLL.h" to pull in ACE_DLL class declaration. + Tue Jun 04 16:34:18 2002 Ossama Othman <ossama@uci.edu> * ace/Service_Config.cpp: diff --git a/ace/Service_Config.cpp b/ace/Service_Config.cpp index 1b87a1e5941..d531d175eab 100644 --- a/ace/Service_Config.cpp +++ b/ace/Service_Config.cpp @@ -11,6 +11,7 @@ #include "ace/Auto_Ptr.h" #include "ace/Reactor.h" #include "ace/Thread_Manager.h" +#include "ace/DLL.h" #include "ace/Service_Config.h" #include "ace/XML_Svc_Conf.h" diff --git a/ace/Service_Config.h b/ace/Service_Config.h index 5444ee126ee..7f8ef3816b1 100644 --- a/ace/Service_Config.h +++ b/ace/Service_Config.h @@ -1,4 +1,4 @@ -/* -*- C++ -*- */ +// -*- C++ -*- //============================================================================= /** @@ -12,7 +12,9 @@ #ifndef ACE_SERVICE_CONFIG_H #define ACE_SERVICE_CONFIG_H + #include "ace/pre.h" + #include "ace/config-all.h" #if !defined (ACE_LACKS_PRAGMA_ONCE) @@ -24,7 +26,6 @@ #include "ace/Unbounded_Queue.h" #include "ace/Unbounded_Set.h" #include "ace/SString.h" -#include "ace/DLL.h" #include "ace/XML_Svc_Conf.h" // Forward decl. @@ -32,6 +33,8 @@ class ACE_Service_Repository; class ACE_Allocator; class ACE_Reactor; class ACE_Thread_Manager; +class ACE_DLL; + #if (ACE_USES_CLASSIC_SVC_CONF == 1) class ACE_Svc_Conf_Param; #endif /* ACE_USES_CLASSIC_SVC_CONF ==1 */ @@ -448,5 +451,7 @@ private: // longer) #include "ace/Reactor.h" #include "ace/Svc_Conf_Tokens.h" + #include "ace/post.h" + #endif /* ACE_SERVICE_CONFIG_H */ |