summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/events/RequestMetadataEvent.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/engine/events/RequestMetadataEvent.hpp')
-rw-r--r--src/libs/engine/events/RequestMetadataEvent.hpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/libs/engine/events/RequestMetadataEvent.hpp b/src/libs/engine/events/RequestMetadataEvent.hpp
index 71f55399..f6a18dfc 100644
--- a/src/libs/engine/events/RequestMetadataEvent.hpp
+++ b/src/libs/engine/events/RequestMetadataEvent.hpp
@@ -38,13 +38,19 @@ namespace Shared {
class RequestMetadataEvent : public QueuedEvent
{
public:
- RequestMetadataEvent(Engine& engine, SharedPtr<Responder> responder, SampleCount timestamp, const string& path, const string& key);
+ RequestMetadataEvent(Engine& engine,
+ SharedPtr<Responder> responder,
+ SampleCount timestamp,
+ bool property,
+ const string& path,
+ const string& key);
void pre_process();
void post_process();
private:
string _path;
+ bool _property;
string _key;
Raul::Atom _value;
GraphObjectImpl* _object;