tahoma2d/toonz/sources/include/tiio_bmp.h

36 lines
535 B
C
Raw Normal View History

2016-05-17 03:04:11 +12:00
#pragma once
2016-03-19 06:57:51 +13:00
#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 : public TPropertyGroup
{
public:
TEnumProperty m_pixelSize;
//TBoolProperty m_compressed;
BmpWriterProperties();
};
} // namespace
#endif