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
Merge branch 'ct' of git.pipapo.org:cinelerra-ct into ct
[cinelerra_cv/ct.git]
/
cinelerra
/
apluginthread.h
blob
e8db8a1c3f8408752471a906a71ecc5e60553646
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
27
/*
28
// Local Variables:
29
// mode: C++
30
// c-file-style: "linux"
31
// End:
32
*/