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

//----------------------------------------------------------
// verbConcat.h - verb that concatenates two files
//----------------------------------------------------------
#ifndef _verbConcat
#define _verbConcat

class verbConcat
{
public:
    static int DoWork(const char *nameOfFile1, const char *nameOfFile2);
};
#endif