mirror of
https://github.com/qpdf/qpdf.git
synced 2024-11-15 17:17:08 +00:00
913eb5ac35
Add virtual methods to QPDFObject, wrappers to QPDFObjectHandle, and implementations to all the QPDF_Object types.
24 lines
564 B
C++
24 lines
564 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 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__
|