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
r956: README.BUILD - add more library recommendations
[cinelerra_cv/ct.git]
/
cinelerra
/
timebomb.h
blob
d4b7b7db012e219854d7cc34ed97bfbe1b580f16
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