summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibPDF/CommonNames.cpp
blob: 015f9ac932efc27006298cda381bd06e8ba924f6 (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) FlyString CommonNames::name = #name;
ENUMERATE_COMMON_NAMES(ENUMERATE)
#undef ENUMERATE

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

}