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