/* * libopenraw - orffile.cpp * * Copyright (C) 2006 Hubert Figuiere * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include #include "debug.h" #include "orffile.h" #include "ifd.h" #include "ifddir.h" #include "ifdentry.h" #include "orfcontainer.h" #include "io/file.h" using namespace Debug; namespace OpenRaw { namespace Internals { RawFile *ORFFile::factory(const char* _filename) { return new ORFFile(_filename); } ORFFile::ORFFile(const char* _filename) : IFDFile(_filename, OR_RAWFILE_TYPE_ORF) { // FIXME this is hackish... find a way to override that better. delete m_container; m_container = new ORFContainer(m_io, 0); } ORFFile::~ORFFile() { } } }