tahoma2d/toonz/sources/include/tiio_bmp.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
547 B
C++

#pragma once
#ifndef TTIO_BMP_INCLUDED
#define TTIO_BMP_INCLUDED
#include "tiio.h"
#include "tproperty.h"
#undef DVAPI
#ifdef TNZCORE_EXPORTS
#define DVAPI DV_EXPORT_API
#else
#define DVAPI DV_IMPORT_API
#endif
namespace Tiio {
DVAPI Tiio::ReaderMaker makeBmpReader;
DVAPI Tiio::WriterMaker makeBmpWriter;
// DVAPI TPropertyGroup *makeBmpWriterProperties();
class BmpWriterProperties final : public TPropertyGroup {
public:
TEnumProperty m_pixelSize;
// TBoolProperty m_compressed;
BmpWriterProperties();
};
} // namespace
#endif