2
1
mirror of https://github.com/qpdf/qpdf.git synced 2024-05-31 17:30:54 +00:00
qpdf/libqpdf/qpdf/QPDF_Name.hh
Jay Berkenbilt 913eb5ac35 Add getTypeCode() and getTypeName()
Add virtual methods to QPDFObject, wrappers to QPDFObjectHandle, and
implementations to all the QPDF_Object types.
2013-01-22 10:01:45 -05:00

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__