diff options
author | handbrake <[email protected]> | 2006-01-14 12:46:58 +0000 |
---|---|---|
committer | handbrake <[email protected]> | 2006-01-14 12:46:58 +0000 |
commit | be63e88ea3080ae0323e55a486474612db5db214 (patch) | |
tree | 708aedd76429bba6ff0223c3852c69a7721d7d55 /HBDVDReader.h |
HandBrake 0.1
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'HBDVDReader.h')
-rw-r--r-- | HBDVDReader.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/HBDVDReader.h b/HBDVDReader.h new file mode 100644 index 000000000..55db069a8 --- /dev/null +++ b/HBDVDReader.h @@ -0,0 +1,23 @@ +/* $Id: HBDVDReader.h,v 1.3 2003/08/12 20:10:50 titer Exp $ */ + +#ifndef HB_DVD_READER_H +#define HB_DVD_READER_H + +#include "HBThread.h" +class HBManager; +class HBTitleInfo; +class HBFifo; + +class HBDVDReader : public HBThread +{ + public: + HBDVDReader( HBManager * manager, HBTitleInfo * titleInfo ); + + private: + void DoWork(); + + HBManager * fManager; + HBTitleInfo * fTitleInfo; +}; + +#endif |