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
r1014: Enable horizontal scrolling with the mouse wheel by pressing Ctrl.
[cinelerra_cv/ct.git]
/
cinelerra
/
removethread.h
blob
9a63c4b364d357b5975e1ce2f6e71590fe5eb335
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