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
13class RecorderWindow;
14
15class 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