ImageFormatAggregator.h 403 B

12345678910111213141516171819
  1. #pragma once
  2. #include "stdafx.h"
  3. #include "IClipAggregator.h"
  4. #include "Clip.h"
  5. class CImageFormatAggregator : public IClipAggregator
  6. {
  7. public:
  8. CImageFormatAggregator(BOOL horizontally);
  9. ~CImageFormatAggregator(void);
  10. virtual bool AddClip(LPVOID lpData, int nDataSize, int nPos, int nCount, UINT cfType);
  11. virtual HGLOBAL GetHGlobal();
  12. protected:
  13. CClipFormats m_images;
  14. BOOL m_horizontally;
  15. };