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 | c22509e37b218da917be6ccfc072e94dc7f3136e (patch) | |
tree | d9e7dc063abdb2f811500c4d93e37cef4424d5f2 /cpp | |
parent | 6574ab48665039ae9b8b1d2c5dd26ea94a3d23fa (diff) | |
download | qpid-python-c22509e37b218da917be6ccfc072e94dc7f3136e.tar.gz |
Added file missed in last commit.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@637882 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/Makefile.am | 1 | ||||
-rw-r--r-- | cpp/src/qpid/broker/OwnershipToken.h | 35 |
2 files changed, 36 insertions, 0 deletions
diff --git a/cpp/src/Makefile.am b/cpp/src/Makefile.am index 699852e335..0513414f3f 100644 --- a/cpp/src/Makefile.am +++ b/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/cpp/src/qpid/broker/OwnershipToken.h b/cpp/src/qpid/broker/OwnershipToken.h new file mode 100644 index 0000000000..15f333941b --- /dev/null +++ b/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 |