summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibPDF/CommonNames.cpp
blob: f0ac03a0ca5b8da1bdae2d386e800afb8bfb2447 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Copyright (c) 2021, Matthew Olsson <mattco@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include <LibPDF/CommonNames.h>

namespace PDF {

#define ENUMERATE(name) DeprecatedFlyString CommonNames::name = #name;
ENUMERATE_COMMON_NAMES(ENUMERATE)
#undef ENUMERATE

DeprecatedFlyString CommonNames::IdentityH = "Identity-H";

}