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.

33 lines
810 B

  1. //-----------------------------------------------------------------------------
  2. //
  3. // File: gnudiffalg.h
  4. // Copyright (C) 1994-1997 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // Declaration of the CGNUDiffAlgorithm, CGNUDiffAlgFact
  8. //-----------------------------------------------------------------------------
  9. #ifndef GNUDIFFALG_H
  10. #define GNUDIFFALG_H
  11. #include "diff.h"
  12. class LTAPIENTRY CGNUDiffAlgorithm : public CDiffAlgorithm
  13. {
  14. public:
  15. virtual CDelta * CalculateDelta(
  16. const wchar_t * seq1,
  17. const wchar_t * seq2);
  18. };
  19. class LTAPIENTRY CGNUDiffAlgFact : public CDiffAlgorithmFactory
  20. {
  21. public:
  22. virtual CDiffAlgorithm * CreateDiffAlgorithm();
  23. };
  24. #if !defined(_DEBUG) || defined(IMPLEMENT)
  25. #include "gnudiffalg.inl"
  26. #endif
  27. #endif // GNUDIFFALG_H