Changed hyperion args variable in module from string to dict

Former-commit-id: ae94dca70590e3ed15e991172b7458cf4298e655
This commit is contained in:
johan
2013-11-30 17:41:38 +01:00
parent 47eaf25904
commit 1ec84005c0
5 changed files with 59 additions and 9 deletions

View File

@@ -1,5 +1,9 @@
#pragma once
// Json includes
#include <json/value.h>
// Hyperion includes
#include <hyperion/Hyperion.h>
// pre-declarioation
@@ -30,7 +34,7 @@ public:
struct EffectDefinition
{
std::string script;
std::string args;
Json::Value args;
};
private slots: