xref: /haiku/src/apps/patchbay/PatchApp.h (revision c14bca2958fb7b0c34d5464ccfdd87038f909a0c)
1 /* PatchApp.h
2  * ----------
3  * The PatchBay application class.
4  *
5  * Copyright 2013, Haiku, Inc. All rights reserved.
6  * Distributed under the terms of the MIT License.
7  *
8  * Revisions by Pete Goodeve
9  *
10  * Copyright 1999, Be Incorporated.   All Rights Reserved.
11  * This file may be used under the terms of the Be Sample Code License.
12  */
13 #ifndef PATCHAPP_H
14 #define PATCHAPP_H
15 
16 #include <Application.h>
17 
18 class PatchApp : public BApplication
19 {
20 public:
21 	PatchApp();
22 	void ReadyToRun();
23 	void MessageReceived(BMessage* msg);
24 };
25 
26 #endif /* PATCHAPP_H */
27