summaryrefslogtreecommitdiffstats
path: root/core/DVDReader.h
diff options
context:
space:
mode:
Diffstat (limited to 'core/DVDReader.h')
-rw-r--r--core/DVDReader.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/core/DVDReader.h b/core/DVDReader.h
deleted file mode 100644
index b76f57566..000000000
--- a/core/DVDReader.h
+++ /dev/null
@@ -1,25 +0,0 @@
-/* $Id: DVDReader.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_DVD_READER_H
-#define HB_DVD_READER_H
-
-#include "Common.h"
-#include "Thread.h"
-
-class HBDVDReader : public HBThread
-{
- public:
- HBDVDReader( HBManager * manager, HBTitle * title );
-
- private:
- void DoWork();
-
- HBManager * fManager;
- HBTitle * fTitle;
-};
-
-#endif