summaryrefslogtreecommitdiff
path: root/src/ToolBox/superpmi/mcs/verbsmarty.h
blob: c595ecbf4ef12c4fd4daec47a6c1911027be239e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//

//----------------------------------------------------------
// verbSmarty.h - verb that outputs Smarty test ID for mc
//----------------------------------------------------------
#ifndef _verbSmarty
#define _verbSmarty

class verbSmarty
{
public:
    verbSmarty(HANDLE hFile);
    void DumpTestInfo(int testID);
    static int DoWork(const char* nameOfInput, const char* nameofOutput, int indexCount, const int* indexes);

private:
    HANDLE m_hFile;
};
#endif