| #pragma once |
| |
| #ifndef TRASTERFXRENDERDATA_H |
| #define TRASTERFXRENDERDATA_H |
| |
| |
| #include "tcommon.h" |
| |
| #undef DVAPI |
| #undef DVVAR |
| #ifdef TFX_EXPORTS |
| #define DVAPI DV_EXPORT_API |
| #define DVVAR DV_EXPORT_VAR |
| #else |
| #define DVAPI DV_IMPORT_API |
| #define DVVAR DV_IMPORT_VAR |
| #endif |
| |
| |
| |
| |
| |
| |
| |
| class DVAPI TRasterFxRenderData : public TSmartObject { |
| public: |
| virtual ~TRasterFxRenderData() {} |
| |
| virtual bool operator==(const TRasterFxRenderData &data) const = 0; |
| virtual std::string toString() const = 0; |
| |
| |
| |
| |
| |
| virtual float typeIndex() const = 0; |
| |
| |
| |
| virtual TRectD getBBoxEnlargement(const TRectD &bbox) { return bbox; } |
| }; |
| |
| |
| |
| #ifdef WIN32 |
| template class DVAPI TSmartPointerT<TRasterFxRenderData>; |
| #endif |
| typedef TSmartPointerT<TRasterFxRenderData> TRasterFxRenderDataP; |
| |
| #endif |