aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf/QPDF_String.hh
blob: a92427e3dcba85430233e208be0d222b15e9f5ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef QPDF_STRING_HH
#define QPDF_STRING_HH

#include <qpdf/QPDFValue.hh>

// QPDF_Strings may included embedded null characters.

class QPDF_String: public QPDFValue
{
    friend class QPDFWriter;

  public:
    virtual ~QPDF_String() = default;
    static std::shared_ptr<QPDFObject> create(std::string const& val);
    static std::shared_ptr<QPDFObject>
    create_utf16(std::string const& utf8_val);
    virtual std::shared_ptr<QPDFObject> shallowCopy();
    virtual std::string unparse();
    std::string unparse(bool force_binary);
    virtual JSON getJSON(int json_version);
    std::string getVal() const;
    std::string getUTF8Val() const;

  private:
    QPDF_String(std::string const& val);
    bool useHexString() const;
    std::string val;
};

#endif // QPDF_STRING_HH