summaryrefslogtreecommitdiff
path: root/src/ToolBox/superpmi/mcs/verbconcat.h
blob: 85674ff7d974a7350ff3968d033b6e6769caa37b (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