blob: 51f6ae2b3e2437a4f7856eb14cdb5e8f0a4598c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file LICENSE.rst or https://cmake.org/licensing for details. */
#pragma once
#include "cmsys/Terminal.h"
struct cmMessageMetadata
{
char const* title = nullptr;
int desiredColor = cmsysTerminal_Color_Normal;
};
|