// // 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