| |
| |
| #ifndef TZERARYFX_H |
| #define TZERARYFX_H |
| |
| #include "trasterfx.h" |
| |
| |
| |
| |
| |
| class TZeraryColumnFx; |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| class TZeraryFx : public TRasterFx |
| { |
| public: |
| friend class TZeraryColumnFx; |
| |
| public: |
| TZeraryFx() : m_columnFx() {} |
| |
| |
| TZeraryColumnFx *getColumnFx() const { return m_columnFx; } |
| |
| private: |
| TZeraryColumnFx *m_columnFx; |
| |
| }; |
| |
| #endif |
| |