diff options
-rw-r--r-- | cpp/src/qpid/sys/Acceptor.h | 26 | ||||
-rw-r--r-- | cpp/src/qpid/sys/Connector.h | 25 | ||||
-rw-r--r-- | cpp/src/qpid/sys/Monitor.h | 25 |
3 files changed, 76 insertions, 0 deletions
diff --git a/cpp/src/qpid/sys/Acceptor.h b/cpp/src/qpid/sys/Acceptor.h new file mode 100644 index 0000000000..c192cae811 --- /dev/null +++ b/cpp/src/qpid/sys/Acceptor.h @@ -0,0 +1,26 @@ +#ifndef _sys_Acceptor_h +#define _sys_Acceptor_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(Acceptor.h) + + +#endif /*!_sys_Acceptor_h*/ diff --git a/cpp/src/qpid/sys/Connector.h b/cpp/src/qpid/sys/Connector.h new file mode 100644 index 0000000000..67e12b008c --- /dev/null +++ b/cpp/src/qpid/sys/Connector.h @@ -0,0 +1,25 @@ +#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/Monitor.h b/cpp/src/qpid/sys/Monitor.h new file mode 100644 index 0000000000..7d7b7ac0cf --- /dev/null +++ b/cpp/src/qpid/sys/Monitor.h @@ -0,0 +1,25 @@ +#ifndef _sys_Monitor_h +#define _sys_Monitor_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 <qpid/sys/platform.h> +#include QPID_PLATFORM_H(Monitor.h) + +#endif /*!_sys_Monitor_h*/ |