CF_HDropAggregator.h 335 B

12345678910111213141516
  1. #pragma once
  2. #include "IClipAggregator.h"
  3. #include "FileRecieve.h"
  4. class CCF_HDropAggregator : public IClipAggregator
  5. {
  6. public:
  7. CCF_HDropAggregator(void);
  8. ~CCF_HDropAggregator(void);
  9. virtual bool AddClip(LPVOID lpData, int nDataSize, int nPos, int nCount);
  10. virtual HGLOBAL GetHGlobal();
  11. protected:
  12. CFileRecieve m_DropFiles;
  13. };