1 /* 2 * Copyright 2005, Jérôme Duval. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 * 5 * Inspired by SoundCapture from Be newsletter (Media Kit Basics: Consumers and Producers) 6 */ 7 8 #ifndef RECORDERAPP_H 9 #define RECORDERAPP_H 10 11 #include <Application.h> 12 13 class RecorderWindow; 14 15 class RecorderApp : public BApplication { 16 public: 17 RecorderApp(const char * signature); 18 virtual ~RecorderApp(); 19 status_t InitCheck(); 20 private: 21 RecorderWindow* fRecorderWin; 22 }; 23 24 #endif /* RECORDERAPP_H */ 25