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// verbStrip.h - verb that removes a list of mc's from an MCH file
8//----------------------------------------------------------
9#ifndef _verbStrip
10#define _verbStrip
11
12class verbStrip
13{
14public:
15 static int DoWork(const char* nameOfInput1,
16 const char* nameOfOutput,
17 int indexCount,
18 const int* indexes,
19 bool strip,
20 bool stripCR);
21 static int DoWorkTheOldWay(
22 const char* nameOfInput, const char* nameOfOutput, int indexCount, const int* indexes, bool stripCR);
23};
24#endif
25