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
r499: This commit was manufactured by cvs2svn to create tag 'r1_2_1-last'.
[cinelerra_cv/mob.git]
/
hvirtual
/
cinelerra
/
mainclock.h
blob
9a7322bc98638a8ac4f63048ad7ebd6e24fa0df5
1
#ifndef MAINCLOCK_H
2
#define MAINCLOCK_H
3
4
#include
"guicast.h"
5
#include
"mwindow.inc"
6
#include
"mwindowgui.inc"
7
8
class
MainClock
:
public
BC_Title
9
{
10
public
:
11
MainClock
(
MWindow
*
mwindow
,
int
x
,
int
y
,
int
w
);
12
~
MainClock
();
13
14
void
set_frame_offset
(
double
value
);
15
void
update
(
double
position
);
16
17
MWindow
*
mwindow
;
18
double
position_offset
;
19
};
20
21
22
#endif