home *** CD-ROM | disk | FTP | other *** search
- #ifndef TWINPICTUREFORMAT_H
- #define TWINPICTUREFORMAT_H
-
- #include "PictureFormat.h"
- class String;
-
- class TwinPictureFormat : public PictureFormat
- {
- Color * data;
- unsigned sx;
- unsigned sy;
- static bool recursion;
- public:
- explicit TwinPictureFormat(const String & name);
- virtual ~TwinPictureFormat();
- virtual const Color * colors()const;
- virtual unsigned height()const;
- virtual unsigned width()const;
- };
- #endif //TWINPICTUREFORMAT_H