![]() |
Mixxx
|
00001 #ifndef SCRIPT_TRACKCONTROLEVENT_H 00002 #define SCRIPT_TRACKCONTROLEVENT_H 00003 00004 #include "scriptcontrolevent.h" 00005 #include "scriptengine.h" 00006 00007 class TrackControlEvent : public ScriptControlEvent { 00008 public: 00009 TrackControlEvent(ScriptEngine* parent, int channel, \ 00010 QString path, QDateTime time, int process, \ 00011 int tag = -1); 00012 virtual ~TrackControlEvent(); 00013 virtual void execute(); 00014 protected: 00015 ScriptEngine* m_parent; 00016 int m_channel; 00017 QString m_path; 00018 }; 00019 #endif