242a6db230
the rest of the test classes. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@407 a95241bf-73f2-0310-859d-f6bbb57e9c96
43 lines
625 B
C++
43 lines
625 B
C++
// TestApp.h
|
|
|
|
#ifndef _beos_test_app_h_
|
|
#define _beos_test_app_h_
|
|
|
|
#include <Application.h>
|
|
#include <MessageQueue.h>
|
|
|
|
// TestHandler
|
|
|
|
class BTestHandler : public BHandler {
|
|
public:
|
|
virtual void MessageReceived(BMessage *message);
|
|
BMessageQueue &Queue();
|
|
|
|
private:
|
|
BMessageQueue fQueue;
|
|
};
|
|
|
|
|
|
// TestApp
|
|
|
|
class BTestApp : public BApplication {
|
|
public:
|
|
BTestApp(const char *signature);
|
|
|
|
status_t Init();
|
|
void Terminate();
|
|
|
|
virtual void ReadyToRun();
|
|
|
|
BTestHandler &Handler();
|
|
|
|
private:
|
|
static int32 _AppThreadStart(void *data);
|
|
|
|
private:
|
|
thread_id fAppThread;
|
|
BTestHandler fHandler;
|
|
};
|
|
|
|
#endif // _beos_test_app_h_
|