| Index: experimental/PdfViewer/pdfparser/native/pdfapi/SkPdfThreadDictionary_autogen.cpp
|
| ===================================================================
|
| --- experimental/PdfViewer/pdfparser/native/pdfapi/SkPdfThreadDictionary_autogen.cpp (revision 0)
|
| +++ experimental/PdfViewer/pdfparser/native/pdfapi/SkPdfThreadDictionary_autogen.cpp (revision 0)
|
| @@ -0,0 +1,40 @@
|
| +#include "SkPdfThreadDictionary_autogen.h"
|
| +
|
| +
|
| +#include "SkPdfNativeDoc.h"
|
| +SkString SkPdfThreadDictionary::Type(SkPdfNativeDoc* doc) {
|
| + SkPdfNativeObject* ret = get("Type", "");
|
| + if (doc) {ret = doc->resolveReference(ret);}
|
| + if ((ret != NULL && ret->isName()) || (doc == NULL && ret != NULL && ret->isReference())) return ret->nameValue2();
|
| + // TODO(edisonn): warn about missing default value for optional fields
|
| + return SkString();
|
| +}
|
| +
|
| +bool SkPdfThreadDictionary::has_Type() const {
|
| + return get("Type", "") != NULL;
|
| +}
|
| +
|
| +SkPdfDictionary* SkPdfThreadDictionary::F(SkPdfNativeDoc* doc) {
|
| + SkPdfNativeObject* ret = get("F", "");
|
| + if (doc) {ret = doc->resolveReference(ret);}
|
| + if ((ret != NULL && ret->isDictionary()) || (doc == NULL && ret != NULL && ret->isReference())) return (SkPdfDictionary*)ret;
|
| + // TODO(edisonn): warn about missing default value for optional fields
|
| + return NULL;
|
| +}
|
| +
|
| +bool SkPdfThreadDictionary::has_F() const {
|
| + return get("F", "") != NULL;
|
| +}
|
| +
|
| +SkPdfDictionary* SkPdfThreadDictionary::I(SkPdfNativeDoc* doc) {
|
| + SkPdfNativeObject* ret = get("I", "");
|
| + if (doc) {ret = doc->resolveReference(ret);}
|
| + if ((ret != NULL && ret->isDictionary()) || (doc == NULL && ret != NULL && ret->isReference())) return (SkPdfDictionary*)ret;
|
| + // TODO(edisonn): warn about missing default value for optional fields
|
| + return NULL;
|
| +}
|
| +
|
| +bool SkPdfThreadDictionary::has_I() const {
|
| + return get("I", "") != NULL;
|
| +}
|
| +
|
|
|