mirror of
https://github.com/qpdf/qpdf.git
synced 2025-01-09 09:50:28 +00:00
25 lines
580 B
C++
25 lines
580 B
C++
#ifndef QPDF_NAME_HH
|
|
#define QPDF_NAME_HH
|
|
|
|
#include <qpdf/QPDFObject.hh>
|
|
|
|
class QPDF_Name: public QPDFObject
|
|
{
|
|
public:
|
|
QPDF_Name(std::string const& name);
|
|
virtual ~QPDF_Name();
|
|
virtual std::string unparse();
|
|
virtual JSON getJSON();
|
|
virtual QPDFObject::object_type_e getTypeCode() const;
|
|
virtual char const* getTypeName() const;
|
|
std::string getName() const;
|
|
|
|
// Put # into strings with characters unsuitable for name token
|
|
static std::string normalizeName(std::string const& name);
|
|
|
|
private:
|
|
std::string name;
|
|
};
|
|
|
|
#endif // QPDF_NAME_HH
|