From 295145d247a7523affdf43f8d870912b1a303caf Mon Sep 17 00:00:00 2001 From: Alan Conway Date: Thu, 9 Nov 2006 01:29:59 +0000 Subject: 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 --- cpp/src/qpid/sys/Connector.h | 25 ------------------------- cpp/src/qpid/sys/Socket.h | 27 +++++++++++++++++++++++++++ cpp/src/qpid/sys/Time.h | 6 +++--- 3 files changed, 30 insertions(+), 28 deletions(-) delete mode 100644 cpp/src/qpid/sys/Connector.h create mode 100644 cpp/src/qpid/sys/Socket.h (limited to 'cpp/src/qpid/sys') diff --git a/cpp/src/qpid/sys/Connector.h b/cpp/src/qpid/sys/Connector.h deleted file mode 100644 index 67e12b008c..0000000000 --- a/cpp/src/qpid/sys/Connector.h +++ /dev/null @@ -1,25 +0,0 @@ -#ifndef _sys_Connector_h -#define _sys_Connector_h - -/* - * - * Copyright (c) 2006 The Apache Software Foundation - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * - */ - -#include "platform.h" -#include QPID_PLATFORM_H(Connector.h) - -#endif /*!_sys_Connector_h*/ diff --git a/cpp/src/qpid/sys/Socket.h b/cpp/src/qpid/sys/Socket.h new file mode 100644 index 0000000000..243764353e --- /dev/null +++ b/cpp/src/qpid/sys/Socket.h @@ -0,0 +1,27 @@ +#ifndef _sys_Socket_h +#define _sys_Socket_h + +/* + * + * Copyright (c) 2006 The Apache Software Foundation + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + */ + +#include +#include QPID_PLATFORM_H(Socket.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*/ -- cgit v1.2.1