| 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 | // verbDump.h - verb that Dumps a MC file | 
|---|
| 8 | //---------------------------------------------------------- | 
|---|
| 9 | #ifndef _verbDump | 
|---|
| 10 | #define _verbDump | 
|---|
| 11 |  | 
|---|
| 12 | class verbDump | 
|---|
| 13 | { | 
|---|
| 14 | public: | 
|---|
| 15 | static int DoWork(const char* nameofInput, int indexCount, const int* indexes); | 
|---|
| 16 | }; | 
|---|
| 17 | #endif | 
|---|
| 18 |  | 
|---|