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
Fixed initialisation of tf in file_open(). Without setting the memory to 0,
[cinelerra_cv/mob.git]
/
plugins
/
burn
/
burnwindow.h
blob
dc4276c0112d5f28801df32ebcbb1a4a34a7dae6
1
#ifndef BURNWINDOW_H
2
#define BURNWINDOW_H
3
4
#include
"guicast.h"
5
6
class
BurnThread
;
7
class
BurnWindow
;
8
9
#include
"filexml.h"
10
#include
"mutex.h"
11
#include
"burn.h"
12
13
14
PLUGIN_THREAD_HEADER
(
BurnMain
,
BurnThread
,
BurnWindow
)
15
16
17
18
class
BurnWindow
:
public
BC_Window
19
{
20
public
:
21
BurnWindow
(
BurnMain
*
client
,
int
x
,
int
y
);
22
~
BurnWindow
();
23
24
int
create_objects
();
25
int
close_event
();
26
27
BurnMain
*
client
;
28
};
29
30
31
32
33
34
35
36
37
#endif