P4C
The P4 Compiler
Loading...
Searching...
No Matches
testgen/toolname.h
1/*
2 * SPDX-FileCopyrightText: 2024 The P4 Language Consortium
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#ifndef BACKENDS_P4TOOLS_MODULES_TESTGEN_TOOLNAME_H_
8#define BACKENDS_P4TOOLS_MODULES_TESTGEN_TOOLNAME_H_
9
10#include <string_view>
11
12namespace P4::P4Tools::P4Testgen {
13
14static inline constexpr std::string_view TOOL_NAME = "testgen";
15
16} // namespace P4::P4Tools::P4Testgen
17
18#endif /* BACKENDS_P4TOOLS_MODULES_TESTGEN_TOOLNAME_H_ */