repo.or.cz
/
cinelerra_cv
/
mob.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
r125: This commit was manufactured by cvs2svn to create tag 'r1_1_7-last'.
[cinelerra_cv/mob.git]
/
hvirtual
/
cinelerra
/
selections.h
blob
aaaf64b37624c01d8550910f548b4ceb8c1b9ecd
1
#ifndef SELECTIONS_H
2
#define SELECTIONS_H
3
4
#include
"edits.h"
5
#include
"edl.inc"
6
#include
"selection.inc"
7
#include
"track.inc"
8
9
10
// Only used by video tracks
11
class
Selections
:
public
Edits
12
{
13
public
:
14
Selections
(
EDL
*
edl
,
Track
*
track
);
15
~
Selections
();
16
17
virtual
Selections
&
operator
=(
Selections
&
selections
);
18
19
Track
*
track
;
20
};
21
22
#endif