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
/
intautos.h
blob
76a845b6dd1dc7382cdc63561bd0a231b83ad80f
1
#ifndef INTAUTOS_H
2
#define INTAUTOS_H
3
4
#include
"autos.h"
5
#include
"edl.inc"
6
#include
"track.inc"
7
8
class
IntAutos
:
public
Autos
9
{
10
public
:
11
IntAutos
(
EDL
*
edl
,
Track
*
track
);
12
~
IntAutos
();
13
14
Auto
*
new_auto
();
15
int
automation_is_constant
(
int64_t
start
,
int64_t
end
);
16
double
get_automation_constant
(
int64_t
start
,
int64_t
end
);
17
void
dump
();
18
};
19
20
#endif