tahoma2d/toonz/sources/include/trastercm.h

28 lines
509 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 T_RASTERCM_INCLUDED
#define T_RASTERCM_INCLUDED
#include "traster.h"
#include "tpixelcm.h"
#undef DVAPI
#undef DVVAR
#ifdef TRASTER_EXPORTS
#define DVAPI DV_EXPORT_API
#define DVVAR DV_EXPORT_VAR
#else
#define DVAPI DV_IMPORT_API
#define DVVAR DV_IMPORT_VAR
#endif
typedef TRasterT<TPixelCM32> TRasterCM32;
2016-04-15 17:11:23 +12:00
#ifdef _WIN32
2016-03-19 06:57:51 +13:00
template class DVAPI TSmartPointerT<TRasterT<TPixelCM32>>;
template class DVAPI TRasterPT<TPixelCM32>;
#endif
typedef TRasterPT<TPixelCM32> TRasterCM32P;
#endif