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
/
plugintclient.h
blob
27391349e828d3e9d34714beee6d0581951696d7
1
#ifndef PLUGINTCLIENT_H
2
#define PLUGINTCLIENT_H
3
4
5
#include
"pluginclient.h"
6
7
8
class
PluginTClient
:
public
PluginClient
9
{
10
public
:
11
PluginTClient
(
PluginServer
*
server
);
12
virtual
~
PluginTClient
();
13
14
int
is_theme
();
15
virtual
Theme
*
new_theme
() {
return
0
; };
16
};
17
18
19
20
#endif