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// verbFracture.h - verb that copies N items into each child file.
8//----------------------------------------------------------
9#ifndef _verbFracture
10#define _verbFracture
11
12class verbFracture
13{
14public:
15 static int DoWork(
16 const char* nameOfInput1, const char* nameOfOutput, int indexCount, const int* indexes, bool stripCR);
17};
18#endif
19