xref: /haiku/src/apps/cortex/addons/LoggingConsumer/NodeHarnessApp.cpp (revision 239222b2369c39dc52df52b0a7cdd6cc0a91bc92)
1 // NodeHarnessApp.cpp
2 
3 #include "NodeHarnessApp.h"
4 #include "NodeHarnessWin.h"
5 
6 NodeHarnessApp::NodeHarnessApp(const char *signature)
7 	: BApplication(signature)
8 {
9 }
10 
11 void
12 NodeHarnessApp::ReadyToRun()
13 {
14 	BWindow* win = new NodeHarnessWin(BRect(100, 200, 210, 330), "NodeLogger");
15 	win->Show();
16 }
17