diff options
author | Stephen D. Huston <shuston@apache.org> | 2008-10-21 18:29:44 +0000 |
---|---|---|
committer | Stephen D. Huston <shuston@apache.org> | 2008-10-21 18:29:44 +0000 |
commit | a456228771847475234d60f58307fff1ba5ecc43 (patch) | |
tree | 41ee422be98bedec96969b4785ffb34c15e128c1 /cpp/src/qpid/sys/windows/IOHandle.cpp | |
parent | f3c32c4937b95a0fafbbb36aa3e7d43471d77be3 (diff) | |
download | qpid-python-a456228771847475234d60f58307fff1ba5ecc43.tar.gz |
Refactor sys::AsynchIO class to allow reimplementing on other platforms without affecting upper level usage. Resolves QPID-1377 and supplies Windows AsynchIO.cpp
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@706709 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/sys/windows/IOHandle.cpp')
-rwxr-xr-x | cpp/src/qpid/sys/windows/IOHandle.cpp | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/cpp/src/qpid/sys/windows/IOHandle.cpp b/cpp/src/qpid/sys/windows/IOHandle.cpp new file mode 100755 index 0000000000..ba544c8c90 --- /dev/null +++ b/cpp/src/qpid/sys/windows/IOHandle.cpp @@ -0,0 +1,42 @@ +/* + * + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you 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/IOHandle.h" +#include "IoHandlePrivate.h" +#include <windows.h> + +namespace qpid { +namespace sys { + +SOCKET toFd(const IOHandlePrivate* h) +{ + return h->fd; +} + +IOHandle::IOHandle(IOHandlePrivate* h) : + impl(h) +{} + +IOHandle::~IOHandle() { + delete impl; +} + +}} // namespace qpid::sys |