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
r370: Heroine Virutal's official release 1.2.1
[cinelerra_cv/mob.git]
/
hvirtual
/
plugins
/
holo
/
holowindow.h
blob
9d2f11b51ddc4fdd5cb64cae09487e6c36a2062e
1
#ifndef HOLOWINDOW_H
2
#define HOLOWINDOW_H
3
4
#include
"guicast.h"
5
6
class
HoloThread
;
7
class
HoloWindow
;
8
9
#include
"filexml.h"
10
#include
"holo.h"
11
#include
"mutex.h"
12
#include
"pluginclient.h"
13
14
15
PLUGIN_THREAD_HEADER
(
HoloMain
,
HoloThread
,
HoloWindow
)
16
17
class
HoloWindow
:
public
BC_Window
18
{
19
public
:
20
HoloWindow
(
HoloMain
*
client
,
int
x
,
int
y
);
21
~
HoloWindow
();
22
23
int
create_objects
();
24
int
close_event
();
25
26
HoloMain
*
client
;
27
};
28
29
30
31
32
33
34
#endif