4#ifndef PDF_CID_TO_GID_MAP_H
5#define PDF_CID_TO_GID_MAP_H
21 using iterator = CIDToGIDMap::const_iterator;
31 bool TryMapCIDToGID(
unsigned cid,
unsigned&
gid)
const;
35 unsigned GetSize()
const;
36 iterator begin()
const;
43 using PdfCIDToGIDMapConstPtr = std::shared_ptr<const PdfCIDToGIDMap>;
This file should be included as the FIRST file in every header of PoDoFo lib.
Helper class to handle the /CIDToGIDMap entry in a Type2 CID font or /TrueType fonts implicit CID to ...
Definition PdfCIDToGIDMap.h:19
This class represents a PDF indirect Object in memory.
Definition PdfObject.h:31
Convenient type for char array storage and/or buffer with std::string compatibility.
Definition basetypes.h:30
All classes, functions, types and enums of PoDoFo are members of these namespace.
Definition basetypes.h:13
@ Create
Create a new file or truncate existing one for writing/reading.
std::map< unsigned, unsigned > CIDToGIDMap
A backing storage for a CID to GID map.
Definition PdfCIDToGIDMap.h:14