repo.or.cz
/
cinelerra_cv
/
ct.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
r1014: Enable horizontal scrolling with the mouse wheel by pressing Ctrl.
[cinelerra_cv/ct.git]
/
cinelerra
/
apluginthread.h
blob
bc3405037960da385f410132fc6ee751d6389d8c
1
#ifndef APLUGINTHREAD_H
2
#define APLUGINTHREAD_H
3
4
class
APluginThread
;
5
6
#include
"thread.h"
7
8
#include
"pluginserver.h"
9
10
class
APluginThread
:
public
Thread
11
{
12
public
:
13
APluginThread
(
PluginServer
*
plugin_server
);
14
~
APluginThread
();
15
16
attach
();
17
detach
();
18
void
run
();
19
20
PluginServer
*
plugin_server
;
21
};
22
23
24
25
26
#endif