#ifndef __HELLO_H_INCLUDED__
#define __HELLO_H_INCLUDED__

#include "threads.h"

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


#endif /* __HELLO_H_INCLUDED__ */
