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
35 lines
533 B
/*++
|
|
|
|
Copyright (C) 1996-1999 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
REDVISIT.H
|
|
|
|
History:
|
|
|
|
--*/
|
|
|
|
#ifndef REDVISIT_H
|
|
#define REDVISIT_H
|
|
|
|
#include "diff.h"
|
|
|
|
class CRichEditCtrl;
|
|
|
|
class LTAPIENTRY CRichEditDeltaVisitor : public CDeltaVisitor
|
|
{
|
|
public:
|
|
CRichEditDeltaVisitor(CRichEditCtrl & red);
|
|
virtual void VisitDifference(const CDifference & diff) const;
|
|
|
|
private:
|
|
CRichEditCtrl & m_red;
|
|
};
|
|
|
|
|
|
#if !defined(_DEBUG) || defined(IMPLEMENT)
|
|
#include "redvisit.inl"
|
|
#endif
|
|
|
|
#endif // REDVISIT_H
|