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
32 lines
740 B
//-----------------------------------------------------------------------------
|
|
//
|
|
// File: redvisit.h
|
|
// Copyright (C) 1994-1997 Microsoft Corporation
|
|
// All rights reserved.
|
|
//
|
|
// Declaration of CRichEditDeltaVisitor
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#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
|