BTRFS: Implement BTree::Path and change _Find.
[haiku.git] / src / apps / soundrecorder / RecorderApp.h
blob19ccfecf8986fdfee8d8065d3c12172ed3a73739
1 /*
2 * Copyright 2005, Jérôme Duval. All rights reserved.
3 * Distributed under the terms of the MIT License.
5 * Inspired by SoundCapture from Be newsletter (Media Kit Basics: Consumers and Producers)
6 */
8 #ifndef RECORDERAPP_H
9 #define RECORDERAPP_H
11 #include <Application.h>
13 class RecorderWindow;
15 class RecorderApp : public BApplication {
16 public:
17 RecorderApp(const char * signature);
18 virtual ~RecorderApp();
19 status_t InitCheck();
20 private:
21 RecorderWindow* fRecorderWin;
24 #endif /* RECORDERAPP_H */