diff options
author | cleeland <cleeland@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-10-30 19:38:53 +0000 |
---|---|---|
committer | cleeland <cleeland@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-10-30 19:38:53 +0000 |
commit | 414376a4f9dcfce69cd6c244f2be66b31a0ca325 (patch) | |
tree | d0a2b0df32c9605ca31a8cb1e80f014e91c6c0ca /ace/ACE.h | |
parent | 8f794f4701a9d5c5dd407ba48f50b68eb4b511e5 (diff) | |
download | ATCD-414376a4f9dcfce69cd6c244f2be66b31a0ca325.tar.gz |
added ACE_CLASS_IS_NAMESPACE.
Diffstat (limited to 'ace/ACE.h')
-rw-r--r-- | ace/ACE.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/ace/ACE.h b/ace/ACE.h index 17b9b5ce3a0..b69d9979d62 100644 --- a/ace/ACE.h +++ b/ace/ACE.h @@ -28,7 +28,6 @@ class ACE_Event_Handler; class ACE_INET_Addr; class ACE_Export ACE -{ // = TITLE // Contains value added ACE methods that extend the behavior // of the UNIX and Win32 OS calls. @@ -38,6 +37,9 @@ class ACE_Export ACE // single place in order to manage the namespace better. These // methods are put here rather than in ACE_OS in order to // separate concerns. +{ + ACE_CLASS_IS_NAMESPACE (ACE); + public: // = ACE version information. static u_int major_version (); @@ -519,9 +521,6 @@ public: // Computes the base 2 logarithm of <num>. private: - ACE (void); - // Ensure we can't define an instance of this class... - static int enter_recv_timedwait (ACE_HANDLE handle, const ACE_Time_Value *timeout, int &val); |