xref: /haiku/src/apps/cortex/addons/LoggingConsumer/NodeHarnessApp.h (revision 3cb015b1ee509d69c643506e8ff573808c86dcfc)
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