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