Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-10 10:23:49

0001 //========================================================================
0002 //
0003 // PDFDocEncoding.h
0004 //
0005 // Copyright 2002-2003 Glyph & Cog, LLC
0006 //
0007 //========================================================================
0008 
0009 //========================================================================
0010 //
0011 // Modified under the Poppler project - http://poppler.freedesktop.org
0012 //
0013 // All changes made under the Poppler project to this file are licensed
0014 // under GPL version 2 or later
0015 //
0016 // Copyright (C) 2007 Adrian Johnson <ajohnson@redneon.com>
0017 // Copyright (C) 2019 Volker Krause <vkrause@kde.org>
0018 // Copyright (C) 2020 Oliver Sander <oliver.sander@tu-dresden.de>
0019 //
0020 // To see a description of the changes please see the Changelog file that
0021 // came with your tarball or type make ChangeLog if you are building from git
0022 //
0023 //========================================================================
0024 
0025 #ifndef PDFDOCENCODING_H
0026 #define PDFDOCENCODING_H
0027 
0028 #include <string>
0029 
0030 #include "CharTypes.h"
0031 #include "poppler_private_export.h"
0032 
0033 class GooString;
0034 
0035 extern const Unicode POPPLER_PRIVATE_EXPORT pdfDocEncoding[256];
0036 
0037 char POPPLER_PRIVATE_EXPORT *pdfDocEncodingToUTF16(const std::string &orig, int *length);
0038 
0039 #endif