CF_TextAggregator.h 342 B

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