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.

36 lines
586 B

  1. /*++
  2. Copyright (C) 1996-1999 Microsoft Corporation
  3. Module Name:
  4. GNUDIFFALG.H
  5. History:
  6. --*/
  7. #ifndef GNUDIFFALG_H
  8. #define GNUDIFFALG_H
  9. #include "diff.h"
  10. class LTAPIENTRY CGNUDiffAlgorithm : public CDiffAlgorithm
  11. {
  12. public:
  13. virtual CDelta * CalculateDelta(
  14. const wchar_t * seq1,
  15. const wchar_t * seq2);
  16. };
  17. class LTAPIENTRY CGNUDiffAlgFact : public CDiffAlgorithmFactory
  18. {
  19. public:
  20. virtual CDiffAlgorithm * CreateDiffAlgorithm();
  21. };
  22. #if !defined(_DEBUG) || defined(IMPLEMENT)
  23. #include "gnudiffalg.inl"
  24. #endif
  25. #endif // GNUDIFFALG_H