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
/
timebomb.h
blob
5cdfea18c319d6eac7d59759db779913b26d766e
1
#ifndef TIMEBOMB_H
2
#define TIMEBOMB_H
3
4
#include <time.h>
5
6
class
TimeBomb
7
{
8
public
:
9
TimeBomb
();
10
~
TimeBomb
();
11
12
int
test_time
(
time_t
testtime
);
13
void
disable_system
();
14
};
15
16
17
18
19
#endif
20
/*
21
// Local Variables:
22
// mode: C++
23
// c-file-style: "linux"
24
// End:
25
*/