diff options
author | Alan Conway <aconway@apache.org> | 2006-11-09 01:29:59 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2006-11-09 01:29:59 +0000 |
commit | 295145d247a7523affdf43f8d870912b1a303caf (patch) | |
tree | e27b156b80f0904530d512177e35284def40ab27 /cpp/src/qpid/sys | |
parent | f6113838a8e6d271e46466fe74884c5bf9706ae0 (diff) | |
download | qpid-python-295145d247a7523affdf43f8d870912b1a303caf.tar.gz |
More separation of concerns with APR, client side complete.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@472732 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/sys')
-rw-r--r-- | cpp/src/qpid/sys/Socket.h (renamed from cpp/src/qpid/sys/Connector.h) | 12 | ||||
-rw-r--r-- | cpp/src/qpid/sys/Time.h | 6 |
2 files changed, 10 insertions, 8 deletions
diff --git a/cpp/src/qpid/sys/Connector.h b/cpp/src/qpid/sys/Socket.h index 67e12b008c..243764353e 100644 --- a/cpp/src/qpid/sys/Connector.h +++ b/cpp/src/qpid/sys/Socket.h @@ -1,5 +1,5 @@ -#ifndef _sys_Connector_h -#define _sys_Connector_h +#ifndef _sys_Socket_h +#define _sys_Socket_h /* * @@ -19,7 +19,9 @@ * */ -#include "platform.h" -#include QPID_PLATFORM_H(Connector.h) +#include <qpid/sys/platform.h> +#include QPID_PLATFORM_H(Socket.h) -#endif /*!_sys_Connector_h*/ + + +#endif /*!_sys_Socket_h*/ diff --git a/cpp/src/qpid/sys/Time.h b/cpp/src/qpid/sys/Time.h index 79d17b433b..92e83116a5 100644 --- a/cpp/src/qpid/sys/Time.h +++ b/cpp/src/qpid/sys/Time.h @@ -1,5 +1,5 @@ -#ifndef _concurrent_Time_h -#define _concurrent_Time_h +#ifndef _sys_Time_h +#define _sys_Time_h /* * @@ -35,4 +35,4 @@ int64_t getTimeMsecs(); }} -#endif /*!_concurrent_Time_h*/ +#endif /*!_sys_Time_h*/ |