ImageIOHandlerRAW/ImageIOHandlerRAW.h

//**************************************************************************/
// Copyright (c) 2011 Autodesk, Inc.
// All rights reserved.
//
// Use of this software is subject to the terms of the Autodesk license
// agreement provided at the time of installation or download, or which
// otherwise accompanies this software in either electronic or hard copy form.
//
//**************************************************************************/
// DESCRIPTION: ImageIOHandlerRAW - Example of ImageIOHandler implementation
// CREATED: April 2011
//**************************************************************************/

#if defined(JAMBUILD)
#include <Mudbox/mudbox.h>
#else
#include "../../include/Mudbox/mudbox.h"
#endif

using namespace mudbox;



class ImageIOHandlerRAW : public ImageIOHandler
{
    Q_DECLARE_TR_FUNCTIONS(ImageIOHandlerRAW);

    DECLARE_CLASS;

public:
    ImageIOHandlerRAW(void);

    static void Initializer(void);


    virtual bool Import(const QString &sFileName, mudbox::Image *pImage);

    virtual bool Export(const QString &sFileName, mudbox::Image *pImage);

private:
};