summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/qmf/engine/EventImpl.h
diff options
context:
space:
mode:
authorKenneth Anthony Giusti <kgiusti@apache.org>2010-04-23 20:27:27 +0000
committerKenneth Anthony Giusti <kgiusti@apache.org>2010-04-23 20:27:27 +0000
commit944b2eb07f51118a37bacf3124dc19c0b7d85ca8 (patch)
tree5ac8c02fdb578f93e8e73d01c1e42eb56e202ac4 /qpid/cpp/src/qmf/engine/EventImpl.h
parent5e4a9f8dd51364ef4479c0c94d339b8dade93640 (diff)
downloadqpid-python-944b2eb07f51118a37bacf3124dc19c0b7d85ca8.tar.gz
QPID-2546: implement event support for ruby wrapper. Python pending...
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@937506 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/qmf/engine/EventImpl.h')
-rw-r--r--qpid/cpp/src/qmf/engine/EventImpl.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/qpid/cpp/src/qmf/engine/EventImpl.h b/qpid/cpp/src/qmf/engine/EventImpl.h
index dfdf64e848..4046e71ef9 100644
--- a/qpid/cpp/src/qmf/engine/EventImpl.h
+++ b/qpid/cpp/src/qmf/engine/EventImpl.h
@@ -29,9 +29,13 @@
namespace qmf {
namespace engine {
+ typedef boost::shared_ptr<Event> EventPtr;
+
struct EventImpl {
typedef boost::shared_ptr<Value> ValuePtr;
const SchemaEventClass* eventClass;
+ uint64_t timestamp;
+ uint8_t severity;
mutable std::map<std::string, ValuePtr> arguments;
EventImpl(const SchemaEventClass* type);