r1026: Videoscope layout tweaks.
[cinelerra_cv/ct.git] / cinelerra / apluginthread.h
blobbc3405037960da385f410132fc6ee751d6389d8c
1 #ifndef APLUGINTHREAD_H
2 #define APLUGINTHREAD_H
4 class APluginThread;
6 #include "thread.h"
8 #include "pluginserver.h"
10 class APluginThread : public Thread
12 public:
13 APluginThread(PluginServer *plugin_server);
14 ~APluginThread();
16 attach();
17 detach();
18 void run();
20 PluginServer *plugin_server;
26 #endif