mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 18:02:05 -05:00
17 lines
329 B
C++
17 lines
329 B
C++
/*
|
|
* 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";
|
|
|
|
}
|