repo.or.cz
/
cinelerra_cv.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.git]
/
hvirtual
/
cinelerra
/
selection.h
blob
3713614b5327fcbbb73ef8a9e87f07390591d293
1
#ifndef SELECTION_H
2
#define SELECTION_H
3
4
#include
"edl.inc"
5
#include
"edit.h"
6
#include
"selections.inc"
7
8
9
class
Selection
:
public
Edit
10
{
11
public
:
12
Selection
(
EDL
*
edl
,
Selections
*
selections
);
13
virtual
~
Selection
();
14
15
void
synchronize_params
(
Selection
*
selection
);
16
17
EDL
*
edl
;
18
Selections
*
selections
;
19
};
20
21
#endif