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// verbDumpMap.h - verb that dumps a map of index to function name for an MC file
8//----------------------------------------------------------
9#ifndef _verbDumpMap
10#define _verbDumpMap
11
12class verbDumpMap
13{
14public:
15 static int DoWork(const char* nameofInput);
16};
17#endif
18