diff options
| author | Gordon Sim <gsim@apache.org> | 2008-03-17 13:33:02 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2008-03-17 13:33:02 +0000 |
| commit | 150a6ffa5d7d1596e1c9afa2268d948dd64a8b6d (patch) | |
| tree | 3e37c79867474c13dbe9558daee5ee409fee5000 /qpid/cpp | |
| parent | 59a860e074cc38f43b56fe63ff93bd05648dd58f (diff) | |
| download | qpid-python-150a6ffa5d7d1596e1c9afa2268d948dd64a8b6d.tar.gz | |
Added file missed in last commit.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@637882 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp')
| -rw-r--r-- | qpid/cpp/src/Makefile.am | 1 | ||||
| -rw-r--r-- | qpid/cpp/src/qpid/broker/OwnershipToken.h | 35 |
2 files changed, 36 insertions, 0 deletions
diff --git a/qpid/cpp/src/Makefile.am b/qpid/cpp/src/Makefile.am index 699852e335..0513414f3f 100644 --- a/qpid/cpp/src/Makefile.am +++ b/qpid/cpp/src/Makefile.am @@ -295,6 +295,7 @@ nobase_include_HEADERS = \ qpid/broker/ConnectionFactory.h \ qpid/broker/ConnectionHandler.h \ qpid/broker/ConnectionToken.h \ + qpid/broker/OwnershipToken.h \ qpid/broker/Consumer.h \ qpid/broker/Daemon.h \ qpid/broker/Deliverable.h \ diff --git a/qpid/cpp/src/qpid/broker/OwnershipToken.h b/qpid/cpp/src/qpid/broker/OwnershipToken.h new file mode 100644 index 0000000000..15f333941b --- /dev/null +++ b/qpid/cpp/src/qpid/broker/OwnershipToken.h @@ -0,0 +1,35 @@ +/* + * + * 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. + * + */ +#ifndef _OwnershipToken_ +#define _OwnershipToken_ + +namespace qpid { +namespace broker { + +class OwnershipToken{ +public: + virtual ~OwnershipToken(){} +}; + +}} + + +#endif |
