aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/qpdf/QPDF_String.hh
blob: 967b2d3012e91aa8b8bc4ae2308369cb939be5c1 (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
31
32
33
#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:
    ~QPDF_String() override = default;
    static std::shared_ptr<QPDFObject> create(std::string const& val);
    static std::shared_ptr<QPDFObject> create_utf16(std::string const& utf8_val);
    std::shared_ptr<QPDFObject> copy(bool shallow = false) override;
    std::string unparse() override;
    std::string unparse(bool force_binary);
    void writeJSON(int json_version, JSON::Writer& p) override;
    std::string getUTF8Val() const;
    std::string
    getStringValue() const override
    {
        return val;
    }

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

#endif // QPDF_STRING_HH