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
/
levelwindow.h
blob
c10ba16ed5b52ef954ec0f6f695adc8ff863a9f2
1
#ifndef LEVELWINDOW_H
2
#define LEVELWINDOW_H
3
4
#include
"levelwindowgui.inc"
5
#include
"mwindow.inc"
6
#include
"thread.h"
7
8
9
class
LevelWindow
:
public
Thread
10
{
11
public
:
12
LevelWindow
(
MWindow
*
mwindow
);
13
~
LevelWindow
();
14
15
int
create_objects
();
16
void
run
();
17
18
LevelWindowGUI
*
gui
;
19
MWindow
*
mwindow
;
20
};
21
22
23
24
25
26
#endif
27
/*
28
// Local Variables:
29
// mode: C++
30
// c-file-style: "linux"
31
// End:
32
*/