Index
zydeco
/
fractal
Experiment in graphics programming, C++, OpenGL, simulation techniques.
Download
|
Refs
|
Commit Log
|
Files
|
README
|
LICENSE
Latest Commit
{#}
Time
Hash
Subject
Author
#
(+)
(-)
GPG?
6
31 Aug 2023 21:18
3195a10
Update program flow
Josh Stockin
1
15
0
G
Blob @
zydeco
/
include
/
runtime
/
IThread.hpp
text/plain
239 bytes
download raw
1
#ifndef ITHREAD_HPP_
2
#define ITHREAD_HPP_
3
4
5
class
IThread
6
{
7
public
:
8
virtual
void
Start
() =
0
;
9
virtual
void
Terminate
() =
0
;
10
virtual
bool
IsRunning
() =
0
;
11
virtual
void
WaitUntilFinished
() =
0
;
12
};
13
14
15
#endif
/* ITHREAD_HPP_ */
16