summaryrefslogtreecommitdiffstats
path: root/beos/HandBrake.h
diff options
context:
space:
mode:
Diffstat (limited to 'beos/HandBrake.h')
-rw-r--r--beos/HandBrake.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/beos/HandBrake.h b/beos/HandBrake.h
new file mode 100644
index 000000000..72234e195
--- /dev/null
+++ b/beos/HandBrake.h
@@ -0,0 +1,22 @@
+/* $Id: HandBrake.h,v 1.5 2003/09/30 14:38:15 titer Exp $
+
+ This file is part of the HandBrake source code.
+ Homepage: <http://beos.titer.org/handbrake/>.
+ It may be used under the terms of the GNU General Public License. */
+
+#ifndef HB_HANDBRAKE_H
+#define HB_HANDBRAKE_H
+
+#include <Application.h>
+
+class HBWindow;
+
+class HBApp : public BApplication
+{
+ public:
+ HBApp( bool debug );
+
+ HBWindow * fWindow;
+};
+
+#endif