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
Merge branch 'ct' of git.pipapo.org:cinelerra-ct into ct
[cinelerra_cv/ct.git]
/
cinelerra
/
panautos.h
blob
2ea0c5e55150a7b1e76f6503e21c17d38e57e361
1
#ifndef PANAUTOS_H
2
#define PANAUTOS_H
3
4
#include
"autos.h"
5
#include
"edl.inc"
6
#include
"panauto.inc"
7
#include
"track.inc"
8
9
class
PanAutos
:
public
Autos
10
{
11
public
:
12
PanAutos
(
EDL
*
edl
,
Track
*
track
);
13
~
PanAutos
();
14
15
Auto
*
new_auto
();
16
void
get_handle
(
int
&
handle_x
,
17
int
&
handle_y
,
18
int64_t
position
,
19
int
direction
,
20
PanAuto
* &
previous
,
21
PanAuto
* &
next
);
22
void
dump
();
23
};
24
25
#endif
26
/*
27
// Local Variables:
28
// mode: C++
29
// c-file-style: "linux"
30
// End:
31
*/