neffile.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef __NEFFILE_H_
00026 #define __NEFFILE_H_
00027
00028 #include "tiffepfile.h"
00029
00030 namespace OpenRaw {
00031
00032 class Thumbnail;
00033
00034 namespace Internals {
00035 class IOFile;
00036 class IFDFileContainer;
00037
00038 class NEFFile
00039 : public TiffEpFile
00040 {
00041 public:
00042 static RawFile *factory(const char* _filename);
00043 NEFFile(const char* _filename);
00044 virtual ~NEFFile();
00045
00049 static bool isCompressed(RawContainer & container, uint32_t offset);
00050 private:
00051
00052 NEFFile(const NEFFile&);
00053 NEFFile & operator=(const NEFFile &);
00054
00055 virtual ::or_error _getRawData(RawData & data, uint32_t options);
00056 };
00057 }
00058
00059 }
00060
00061 #endif