summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/qmf.mk
diff options
context:
space:
mode:
authorTed Ross <tross@apache.org>2011-01-10 14:06:16 +0000
committerTed Ross <tross@apache.org>2011-01-10 14:06:16 +0000
commitb1cd22ae277d9a987d37e2538aded2f3521bc362 (patch)
tree963a769044353a57597b1b348d8b7f5f8727b07f /qpid/cpp/src/qmf.mk
parentde0bef9f28c6e6b2238405086e3e0177ed36901a (diff)
downloadqpid-python-b1cd22ae277d9a987d37e2538aded2f3521bc362.tar.gz
Updates to the C++ implementation of QMFv2:
1) Consolidated string constants for the protocol into a definition file. 2) Added hooks for subscription handling. 3) Added checks to validate properties and arguments against the schema (if there is a schema). git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1057199 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/qmf.mk')
-rw-r--r--qpid/cpp/src/qmf.mk11
1 files changed, 9 insertions, 2 deletions
diff --git a/qpid/cpp/src/qmf.mk b/qpid/cpp/src/qmf.mk
index d0a186e89f..f3462f1a93 100644
--- a/qpid/cpp/src/qmf.mk
+++ b/qpid/cpp/src/qmf.mk
@@ -51,7 +51,8 @@ QMF2_API = \
../include/qmf/SchemaId.h \
../include/qmf/SchemaMethod.h \
../include/qmf/SchemaProperty.h \
- ../include/qmf/SchemaTypes.h
+ ../include/qmf/SchemaTypes.h \
+ ../include/qmf/Subscription.h
#
@@ -91,10 +92,14 @@ libqmf2_la_SOURCES = \
qmf/AgentEventImpl.h \
qmf/AgentImpl.h \
qmf/AgentSession.cpp \
+ qmf/AgentSubscription.cpp \
+ qmf/AgentSubscription.h \
qmf/ConsoleEvent.cpp \
qmf/ConsoleEventImpl.h \
qmf/ConsoleSession.cpp \
qmf/ConsoleSessionImpl.h \
+ qmf/constants.cpp \
+ qmf/constants.h \
qmf/DataAddr.cpp \
qmf/DataAddrImpl.h \
qmf/Data.cpp \
@@ -116,7 +121,9 @@ libqmf2_la_SOURCES = \
qmf/SchemaMethod.cpp \
qmf/SchemaMethodImpl.h \
qmf/SchemaProperty.cpp \
- qmf/SchemaPropertyImpl.h
+ qmf/SchemaPropertyImpl.h \
+ qmf/Subscription.cpp \
+ qmf/SubscriptionImpl.h
libqmfengine_la_SOURCES = \
$(QMF_ENGINE_API) \