blob: fb5c41c38916e11c512b3465a8eb256b3271fb18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* $Id: HBApp.h,v 1.1.1.1 2003/11/03 12:03:51 titer Exp $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.m0k.org/>.
It may be used under the terms of the GNU General Public License. */
#ifndef HB_HB_APP_H
#define HB_HB_APP_H
#include <Application.h>
class MainWindow;
class HBApp : public BApplication
{
public:
HBApp();
void MessageReceived( BMessage * message );
void RefsReceived( BMessage * message );
MainWindow * fWindow;
};
#endif
|