summaryrefslogtreecommitdiffstats
path: root/beos/HBApp.h
diff options
context:
space:
mode:
authorrhester <[email protected]>2007-02-11 20:25:14 +0000
committerrhester <[email protected]>2007-02-11 20:25:14 +0000
commitc0b2ecafcae40768a4747a1c86350fdfd4460110 (patch)
tree6d12b9f433c879802d1fdfc6720e311c3288d128 /beos/HBApp.h
parent498ec43ed5e16edf0dbcfbf3f768feaaa0d55a8d (diff)
Removed beos tree as deprecated
Updated documentation Minor edit to DownloadMacOsXContribBinaries.sh to make hostname handling more consistent git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@290 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'beos/HBApp.h')
-rw-r--r--beos/HBApp.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/beos/HBApp.h b/beos/HBApp.h
deleted file mode 100644
index 042a791b9..000000000
--- a/beos/HBApp.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef HB_APP_H
-#define HB_APP_H
-
-#include <Application.h>
-
-#include "hb.h"
-
-class MainWindow;
-class ScanWindow;
-
-class HBApp : public BApplication
-{
- public:
- HBApp();
- void MessageReceived( BMessage * message );
- void RefsReceived( BMessage * message );
- void Pulse();
- bool QuitRequested();
-
- private:
- MainWindow * fMainWin;
- ScanWindow * fScanWin;
-
- hb_handle_t * fHandle;
-};
-
-#endif
-