1//
2// Copyright (c) Microsoft. All rights reserved.
3// Licensed under the MIT license. See LICENSE file in the project root for full license information.
4//
5
6//----------------------------------------------------------
7// verbRemoveDup.h - verb that attempts to remove dups
8//----------------------------------------------------------
9#ifndef _verbRemoveDup
10#define _verbRemoveDup
11
12class verbRemoveDup
13{
14public:
15 static int DoWork(const char* nameOfInput1, const char* nameOfOutput, bool stripCR, bool legacyCompare);
16};
17#endif
18