in tools/servicefabric_enums_to_strings_generator/Program.cs [16:49]
static void writeHeaderHeader(StreamWriter outputHeaderFile)
{
outputHeaderFile.Write(
@"// Copyright (C) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
/*THIS FILE IS GENERATED, DO NOT EDIT BY HAND!!!*/
/*generator is called ""servicefabric_enums_to_strings_generator""*/
#ifndef SERVICEFABRIC_ENUMS_TO_STRINGS_H
#define SERVICEFABRIC_ENUMS_TO_STRINGS_H
#include ""macro_utils/macro_utils.h""
#include ""fabrictypes.h""
#ifdef __cplusplus
extern ""C""
{
#endif
");
}
static void writeHeaderFooter(StreamWriter outputHeaderFile)
{
outputHeaderFile.Write(
@"
#ifdef __cplusplus
}
#endif
#endif
"
);
}