summaryrefslogtreecommitdiff
path: root/src/ToolBox/superpmi/mcs/verbsmarty.h
blob: 994695da79a29eba0daa20b8c73b8274b05c39fe (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