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 | // verbConcat.h - verb that concatenates two files |
8 | //---------------------------------------------------------- |
9 | #ifndef _verbConcat |
10 | #define _verbConcat |
11 | |
12 | class verbConcat |
13 | { |
14 | public: |
15 | static int DoWork(const char* nameOfFile1, const char* nameOfFile2); |
16 | }; |
17 | #endif |
18 | |