added thread interface

master
polymurph 4 years ago
parent 073fdadfad
commit 9e4c8e2a75

@ -0,0 +1,17 @@
#ifndef _ITHREAD_HPP_
#define _ITHREAD_HPP_
class Thread
{
public:
typedef void*(*routine_t)(void*);
Thread(routine_t);
private:
};
#endif // _ITHREAD_HPP_
Loading…
Cancel
Save