ladybird/Userland/Libraries/LibPDF/CommonNames.cpp

18 lines
329 B
C++
Raw Normal View History

/*
* 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
2022-03-25 08:19:34 -07:00
FlyString CommonNames::IdentityH = "Identity-H";
}