blob: 1da9f9a3637cf4ad5faeea2220f9f43ce747e66e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Copyright (C) 2025 David M. Cotter
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
namespace Mcp::Constants {
const char ACTION_ID[] = "MCPServer.Action";
const char MENU_ID[] = "MCPServer.Menu";
// About action
const char ABOUT_ACTION_ID[] = "MCPServer.About";
} // namespace Mcp::Constants
|