/** \file
 *
 *  Contains the  class declaration.
 *
 *  Copyright (c) 2007,2008,2009 MBARI
 *  MBARI Proprietary Information.  All Rights Reserved
 *
 */

#ifndef LZMAENCODER_H_
#define LZMAENCODER_H_

#include "FileEncoder.h"

/**
 *  This is a rather abstract class that
 *  can be implemented by classes that
 *  encode a (closed) file.
 *
 *  \ingroup io
 */
class LzmaEncoder : public FileEncoder
{
public:

    LzmaEncoder();

    virtual ~LzmaEncoder();

    virtual bool encode( const char* inFilename, const char* outFilename = 0, const char* renameFilename = 0 );

private:

    // Note that the copy constructor below is private and not given a body.
    // Any attempt to call it will return a compiler error.
    LzmaEncoder( const LzmaEncoder& old ); // disallow copy constructor

};

#endif /* LZMAENCODER_H_ */
