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.

32 lines
740 B

  1. //-----------------------------------------------------------------------------
  2. //
  3. // File: redvisit.h
  4. // Copyright (C) 1994-1997 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // Declaration of CRichEditDeltaVisitor
  8. //-----------------------------------------------------------------------------
  9. #ifndef REDVISIT_H
  10. #define REDVISIT_H
  11. #include "diff.h"
  12. class CRichEditCtrl;
  13. class LTAPIENTRY CRichEditDeltaVisitor : public CDeltaVisitor
  14. {
  15. public:
  16. CRichEditDeltaVisitor(CRichEditCtrl & red);
  17. virtual void VisitDifference(const CDifference & diff) const;
  18. private:
  19. CRichEditCtrl & m_red;
  20. };
  21. #if !defined(_DEBUG) || defined(IMPLEMENT)
  22. #include "redvisit.inl"
  23. #endif
  24. #endif // REDVISIT_H