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
/
aplugin.h
blob
46bfd44d3dccd845de17e42db2e343cabefacda0
1
#ifndef APLUGIN_H
2
#define APLUGIN_H
3
4
#include
"edl.inc"
5
#include
"plugin.h"
6
#include
"pluginset.inc"
7
8
class
APlugin
:
public
Plugin
9
{
10
public
:
11
APlugin
(
EDL
*
edl
,
PluginSet
*
plugin_set
);
12
~
APlugin
();
13
};
14
15
#endif