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
/
apluginset.C
blob
ebffcdaafe52df13d5e1982086eab6a0ee559b70
1
#include "aplugin.h"
2
#include "apluginset.h"
3
4
APluginSet::APluginSet(EDL *edl, Track *track) : PluginSet(edl, track)
5
{
6
}
7
8
9
APluginSet::~APluginSet()
10
{
11
}
12
13
Plugin* APluginSet::create_plugin()
14
{
15
return new APlugin(edl, this);
16
}