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
/
removethread.h
blob
6addc8893296a0b3c43f6408d15e889dc1818cc3
1
#ifndef REMOVETHREAD_H
2
#define REMOVETHREAD_H
3
4
#include
"arraylist.h"
5
#include
"condition.inc"
6
#include
"mutex.inc"
7
#include
"thread.h"
8
9
10
class
RemoveThread
:
public
Thread
11
{
12
public
:
13
RemoveThread
();
14
void
remove_file
(
char
*
path
);
15
void
create_objects
();
16
void
run
();
17
Condition
*
input_lock
;
18
Mutex
*
file_lock
;
19
ArrayList
<
char
*>
files
;
20
};
21
22
23
24
#endif
25
/*
26
// Local Variables:
27
// mode: C++
28
// c-file-style: "linux"
29
// End:
30
*/