Changed TestApp to BTestApp for sake of consitency with

the rest of the test classes.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@407 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Tyler Dauwalder
2002-07-23 22:27:43 +00:00
parent 9d863cc903
commit 242a6db230
5 changed files with 19 additions and 18 deletions
+5 -5
View File
@@ -8,7 +8,7 @@
// TestHandler
class TestHandler : public BHandler {
class BTestHandler : public BHandler {
public:
virtual void MessageReceived(BMessage *message);
BMessageQueue &Queue();
@@ -20,23 +20,23 @@ private:
// TestApp
class TestApp : public BApplication {
class BTestApp : public BApplication {
public:
TestApp(const char *signature);
BTestApp(const char *signature);
status_t Init();
void Terminate();
virtual void ReadyToRun();
TestHandler &Handler();
BTestHandler &Handler();
private:
static int32 _AppThreadStart(void *data);
private:
thread_id fAppThread;
TestHandler fHandler;
BTestHandler fHandler;
};
#endif // _beos_test_app_h_