diff options
author | Alan Conway <aconway@apache.org> | 2009-04-23 11:48:32 +0000 |
---|---|---|
committer | Alan Conway <aconway@apache.org> | 2009-04-23 11:48:32 +0000 |
commit | 9f9f598a5c969cdc43c6cf3ed9c4a309c5933ab5 (patch) | |
tree | 2fdfd65464383b6a10d0a3c615894a140749ed8b /cpp/src/qpid/client/Completion.cpp | |
parent | bd9912920df4f4ac39b957633344aec8d87e22b1 (diff) | |
download | qpid-python-9f9f598a5c969cdc43c6cf3ed9c4a309c5933ab5.tar.gz |
Apply PIMPL pattern to client::Completion and client::Future.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@767896 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/client/Completion.cpp')
-rw-r--r-- | cpp/src/qpid/client/Completion.cpp | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/cpp/src/qpid/client/Completion.cpp b/cpp/src/qpid/client/Completion.cpp new file mode 100644 index 0000000000..e3676b2bde --- /dev/null +++ b/cpp/src/qpid/client/Completion.cpp @@ -0,0 +1,38 @@ +/* + * + * 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 "Completion.h" +#include "CompletionImpl.h" +#include "HandlePrivate.h" + +namespace qpid { +namespace client { + +Completion::Completion(CompletionImpl* i) : Handle<CompletionImpl>(i) {} +Completion::~Completion() {} +Completion::Completion(const Completion& c) : Handle<CompletionImpl>(c.impl) {} +Completion& Completion::operator=(const Completion& c) { Handle<CompletionImpl>::operator=(c); return *this; } + +void Completion::wait() { impl->wait(); } +bool Completion::isComplete() { return impl->isComplete(); } +std::string Completion::getResult() { return impl->getResult(); } + +}} // namespace qpid::client |