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
/
panautos.h
blob
0cccb9b03556cdd888c0d22448ef04fe9ce65a23
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