1 // NodeHarnessApp.h 2 3 #ifndef NodeHarnessApp_H 4 #define NodeHarnessApp_H 1 5 6 #include <app/Application.h> 7 8 class NodeHarnessApp : public BApplication 9 { 10 public: 11 NodeHarnessApp(const char* signature); 12 void ReadyToRun(); 13 }; 14 15 #endif 16