Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
533 B

  1. /*++
  2. Copyright (C) 1996-1999 Microsoft Corporation
  3. Module Name:
  4. REDVISIT.H
  5. History:
  6. --*/
  7. #ifndef REDVISIT_H
  8. #define REDVISIT_H
  9. #include "diff.h"
  10. class CRichEditCtrl;
  11. class LTAPIENTRY CRichEditDeltaVisitor : public CDeltaVisitor
  12. {
  13. public:
  14. CRichEditDeltaVisitor(CRichEditCtrl & red);
  15. virtual void VisitDifference(const CDifference & diff) const;
  16. private:
  17. CRichEditCtrl & m_red;
  18. };
  19. #if !defined(_DEBUG) || defined(IMPLEMENT)
  20. #include "redvisit.inl"
  21. #endif
  22. #endif // REDVISIT_H