OLD | NEW |
(Empty) | |
| 1 #include "SkPdfStructureTreeRootDictionary_autogen.h" |
| 2 |
| 3 std::string SkPdfStructureTreeRootDictionary::Type() const { |
| 4 std::string ret; |
| 5 if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Type", "", &r
et)) return ret; |
| 6 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 7 return ""; |
| 8 } |
| 9 |
| 10 SkPdfDictionary* SkPdfStructureTreeRootDictionary::getKAsDictionary() const { |
| 11 SkPdfDictionary* ret = NULL; |
| 12 if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "K", "",
&ret)) return ret; |
| 13 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 14 return NULL; |
| 15 } |
| 16 |
| 17 SkPdfArray* SkPdfStructureTreeRootDictionary::getKAsArray() const { |
| 18 SkPdfArray* ret = NULL; |
| 19 if (ArrayFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "K", "", &ret
)) return ret; |
| 20 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 21 return NULL; |
| 22 } |
| 23 |
| 24 std::string SkPdfStructureTreeRootDictionary::getIDTreeAsName() const { |
| 25 std::string ret = ""; |
| 26 if (NameFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "IDTree", "",
&ret)) return ret; |
| 27 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 28 return ""; |
| 29 } |
| 30 |
| 31 SkPdfTree* SkPdfStructureTreeRootDictionary::getIDTreeAsTree() const { |
| 32 SkPdfTree* ret = NULL; |
| 33 if (TreeFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "IDTree", "",
&ret)) return ret; |
| 34 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 35 return NULL; |
| 36 } |
| 37 |
| 38 double SkPdfStructureTreeRootDictionary::getParentTreeAsNumber() const { |
| 39 double ret = 0; |
| 40 if (DoubleFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "ParentTree"
, "", &ret)) return ret; |
| 41 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 42 return 0; |
| 43 } |
| 44 |
| 45 SkPdfTree* SkPdfStructureTreeRootDictionary::getParentTreeAsTree() const { |
| 46 SkPdfTree* ret = NULL; |
| 47 if (TreeFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "ParentTree",
"", &ret)) return ret; |
| 48 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 49 return NULL; |
| 50 } |
| 51 |
| 52 long SkPdfStructureTreeRootDictionary::ParentTreeNextKey() const { |
| 53 long ret; |
| 54 if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "ParentTreeNex
tKey", "", &ret)) return ret; |
| 55 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 56 return 0; |
| 57 } |
| 58 |
| 59 SkPdfDictionary* SkPdfStructureTreeRootDictionary::RoleMap() const { |
| 60 SkPdfDictionary* ret; |
| 61 if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "RoleMap
", "", &ret)) return ret; |
| 62 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 63 return NULL; |
| 64 } |
| 65 |
| 66 SkPdfDictionary* SkPdfStructureTreeRootDictionary::ClassMap() const { |
| 67 SkPdfDictionary* ret; |
| 68 if (DictionaryFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "ClassMa
p", "", &ret)) return ret; |
| 69 // TODO(edisonn): warn about missing required field, assert for known good pdf
s |
| 70 return NULL; |
| 71 } |
| 72 |
OLD | NEW |