tahoma2d/toonz/sources/image/tga/tiio_tga.h
Shinya Kitaoka d1f6c4e95b REFACTORING: Add final specifiers (#537)
* add final specifiers

* apply clang-format

* fix for macOS
2016-06-29 15:17:12 +09:00

33 lines
723 B
C++

#pragma once
#ifndef TIIO_TGA_INCLUDED
#define TIIO_TGA_INCLUDED
#include "tiio.h"
//#include "timage_io.h"
#include "tproperty.h"
//===========================================================================
namespace Tiio {
//===========================================================================
class TgaWriterProperties final : public TPropertyGroup {
public:
TEnumProperty m_pixelSize; // 16,24,32
TBoolProperty m_compressed;
TgaWriterProperties();
};
//===========================================================================
Tiio::Reader *makeTgaReader();
Tiio::Writer *makeTgaWriter();
//===========================================================================
} // namespace
#endif