RichTextAggregator.h 360 B

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