#ifndef __CONTROL_THREAD_H_INCLUDED__
#define __CONTROL_THREAD_H_INCLUDED__

#include <stdint.h>
#include "threads.h"

class ControlThread : public Thread {
protected:
	virtual void* Run(void*);
private:
};

#endif /* __CONTROL_THREAD_H_INCLUDED__ */
