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 14 #ifndef _PatchApp_h 15 #define _PatchApp_h 16 17 #include <Application.h> 18 19 class PatchApp : public BApplication 20 { 21 public: 22 PatchApp(); 23 void ReadyToRun(); 24 void MessageReceived(BMessage* msg); 25 }; 26 27 #endif /* _PatchApp_h */ 28