blob: 750f985bbbafc59d730a2d1ec7ad3ae2bd78f461 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "SkPdfGroupAttributesDictionary_autogen.h"
std::string SkPdfGroupAttributesDictionary::Type() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &ret)) return ret;
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
std::string SkPdfGroupAttributesDictionary::S() const {
std::string ret;
if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "S", "", &ret)) return ret;
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return "";
}
|