xref: /haiku/src/apps/patchbay/PatchWin.h (revision a3e794ae459fec76826407f8ba8c94cd3535f128)
1 /* PatchWin.h
2  * ----------
3  * The main PatchBay window 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 PATCHWIN_H
14 #define PATCHWIN_H
15 
16 #include <Window.h>
17 
18 class PatchView;
19 
20 class PatchWin : public BWindow
21 {
22 public:
23 	PatchWin();
24 	bool QuitRequested();
25 private:
26 	PatchView* fPatchView;
27 };
28 
29 #endif /* PATCHWIN_H */
30