aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDF_Keyword.cc
blob: e253784248fe5bf0995ac66f633975c0ce5ff823 (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
#include <qpdf/QPDF_Keyword.hh>

#include <qpdf/QUtil.hh>

QPDF_Keyword::QPDF_Keyword(std::string const& val) :
    val(val)
{
}

QPDF_Keyword::~QPDF_Keyword()
{
}

std::string
QPDF_Keyword::unparse()
{
    return this->val;
}

std::string
QPDF_Keyword::getVal() const
{
    return this->val;
}