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 | 79a29f32ef84c26de35d3e75c3acff314b727f56 (patch) | |
| tree | d66d4d2a8a6cc2d9836fd1816b818a1c6e859e35 /cpp/include/qmf/engine/Event.h | |
| parent | ac53f58b4387bc54b186a9ac3a8933ecce77790e (diff) | |
| download | qpid-python-79a29f32ef84c26de35d3e75c3acff314b727f56.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/qpid@898727 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/include/qmf/engine/Event.h')
| -rw-r--r-- | cpp/include/qmf/engine/Event.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/cpp/include/qmf/engine/Event.h b/cpp/include/qmf/engine/Event.h index 50ab5c1200..4e5200a0a8 100644 --- a/cpp/include/qmf/engine/Event.h +++ b/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; }; } } |
