Skip to content
Snippets Groups Projects
Commit 00ed3193 authored by Brian Carrier's avatar Brian Carrier
Browse files

Added missing file

parent 726aa178
No related branches found
No related tags found
No related merge requests found
#ifndef _TSK_THREAD_H
#define _TSK_THREAD_H
#include <stddef.h>
// If we ever want to run on Windows too, this interface will do.
// Just fill out a win32 version.
class TskThread {
public:
virtual ~TskThread();
virtual void operator()() = 0;
static void run(TskThread** threads, size_t nthreads);
};
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment