P4C
The P4 Compiler
Loading...
Searching...
No Matches
reservedWords.h
1/*
2 * SPDX-FileCopyrightText: 2013 Barefoot Networks, Inc.
3 * Copyright 2013-present Barefoot Networks, Inc.
4 *
5 * SPDX-License-Identifier: Apache-2.0
6 */
7
8#ifndef FRONTENDS_P4_RESERVEDWORDS_H_
9#define FRONTENDS_P4_RESERVEDWORDS_H_
10
11#include <set>
12
13#include "lib/cstring.h"
14
15namespace P4 {
16
17extern const std::set<cstring> reservedWords;
18
19} // namespace P4
20
21#endif /* FRONTENDS_P4_RESERVEDWORDS_H_ */
TODO: this is not really specific to BMV2, it should reside somewhere else.
Definition applyOptionsPragmas.cpp:13