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.
33 lines
810 B
33 lines
810 B
//-----------------------------------------------------------------------------
|
|
//
|
|
// File: gnudiffalg.h
|
|
// Copyright (C) 1994-1997 Microsoft Corporation
|
|
// All rights reserved.
|
|
//
|
|
// Declaration of the CGNUDiffAlgorithm, CGNUDiffAlgFact
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef GNUDIFFALG_H
|
|
#define GNUDIFFALG_H
|
|
|
|
#include "diff.h"
|
|
|
|
class LTAPIENTRY CGNUDiffAlgorithm : public CDiffAlgorithm
|
|
{
|
|
public:
|
|
virtual CDelta * CalculateDelta(
|
|
const wchar_t * seq1,
|
|
const wchar_t * seq2);
|
|
};
|
|
|
|
class LTAPIENTRY CGNUDiffAlgFact : public CDiffAlgorithmFactory
|
|
{
|
|
public:
|
|
virtual CDiffAlgorithm * CreateDiffAlgorithm();
|
|
};
|
|
|
|
#if !defined(_DEBUG) || defined(IMPLEMENT)
|
|
#include "gnudiffalg.inl"
|
|
#endif
|
|
|
|
#endif // GNUDIFFALG_H
|