orfcontainer.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef _ORF_CONTAINER_H__
00023 #define _ORF_CONTAINER_H__
00024
00025 #include "ifdfilecontainer.h"
00026
00027 namespace OpenRaw {
00028 namespace Internals {
00029
00030 class IOFile;
00031
00032 class ORFContainer
00033 : public IFDFileContainer
00034 {
00035 public:
00036 ORFContainer(IO::Stream *file, off_t offset);
00038 virtual ~ORFContainer();
00039
00043 virtual IFDFileContainer::EndianType
00044 isMagicHeader(const char *p, int len);
00045
00046 private:
00047
00048 ORFContainer(const ORFContainer &);
00049 ORFContainer & operator=(const ORFContainer &);
00050 };
00051
00052 }
00053 }
00054
00055
00056 #endif