mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
Python interpreter added to EffectEngine
Former-commit-id: f721f5952efe305d66347d9074ff760baabd2f18
This commit is contained in:
@@ -2,6 +2,9 @@
|
||||
|
||||
#include <hyperion/Hyperion.h>
|
||||
|
||||
// pre-declarioation
|
||||
class Effect;
|
||||
|
||||
class EffectEngine : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
@@ -22,8 +25,13 @@ public slots:
|
||||
/// Clear all effects
|
||||
void allChannelsCleared();
|
||||
|
||||
private slots:
|
||||
void effectFinished(Effect * effect);
|
||||
|
||||
private:
|
||||
Hyperion * _hyperion;
|
||||
|
||||
std::map<std::string, std::string> _availableEffects;
|
||||
|
||||
std::list<Effect *> _activeEffects;
|
||||
};
|
||||
|
Reference in New Issue
Block a user