summaryrefslogtreecommitdiff
path: root/cpp/include/qmf/engine/Event.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/include/qmf/engine/Event.h')
-rw-r--r--cpp/include/qmf/engine/Event.h17
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;
};
}
}