diff options
| author | Ted Ross <tross@apache.org> | 2010-01-13 11:57:19 +0000 |
|---|---|---|
| committer | Ted Ross <tross@apache.org> | 2010-01-13 11:57:19 +0000 |
| commit | fd64f22be60f12e03df8974b547cd9b3af331601 (patch) | |
| tree | e2d9cafd894623102b5b1384d00af75db4dc88ff /qpid/cpp/include/qmf/engine/Event.h | |
| parent | 26280399738211de3f472b625091ff22c762538b (diff) | |
| download | qpid-python-fd64f22be60f12e03df8974b547cd9b3af331601.tar.gz | |
Added raise_event support to the Ruby and Python wrapped agent APIs.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@898727 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/include/qmf/engine/Event.h')
| -rw-r--r-- | qpid/cpp/include/qmf/engine/Event.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/qpid/cpp/include/qmf/engine/Event.h b/qpid/cpp/include/qmf/engine/Event.h index 50ab5c1200..4e5200a0a8 100644 --- a/qpid/cpp/include/qmf/engine/Event.h +++ b/qpid/cpp/include/qmf/engine/Event.h @@ -23,7 +23,24 @@ namespace qmf { namespace engine { + class SchemaEventClass; + class Value; + struct EventImpl; + class Event { + public: + Event(const SchemaEventClass* type); + Event(const Event& from); + ~Event(); + + const SchemaEventClass* getClass() const; + Value* getValue(const char* key) const; + + private: + friend struct EventImpl; + friend struct AgentImpl; + Event(EventImpl* impl); + EventImpl* impl; }; } } |
