summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cpp/src/Makefile.am1
-rw-r--r--cpp/src/qpid/broker/OwnershipToken.h35
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