diff options
Diffstat (limited to 'experimental/PdfViewer/pdfparser/podofo/autogen/SkPdfSubmitFormActionDictionary_autogen.cpp')
-rw-r--r-- | experimental/PdfViewer/pdfparser/podofo/autogen/SkPdfSubmitFormActionDictionary_autogen.cpp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/experimental/PdfViewer/pdfparser/podofo/autogen/SkPdfSubmitFormActionDictionary_autogen.cpp b/experimental/PdfViewer/pdfparser/podofo/autogen/SkPdfSubmitFormActionDictionary_autogen.cpp new file mode 100644 index 0000000000..e269184745 --- /dev/null +++ b/experimental/PdfViewer/pdfparser/podofo/autogen/SkPdfSubmitFormActionDictionary_autogen.cpp @@ -0,0 +1,29 @@ +#include "SkPdfSubmitFormActionDictionary_autogen.h" + +std::string SkPdfSubmitFormActionDictionary::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 ""; +} + +SkPdfFileSpec SkPdfSubmitFormActionDictionary::F() const { + SkPdfFileSpec ret; + if (FileSpecFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "F", "", &ret)) return ret; + // TODO(edisonn): warn about missing required field, assert for known good pdfs + return SkPdfFileSpec(); +} + +SkPdfArray* SkPdfSubmitFormActionDictionary::Fields() const { + SkPdfArray* ret; + if (ArrayFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Fields", "", &ret)) return ret; + // TODO(edisonn): warn about missing required field, assert for known good pdfs + return NULL; +} + +long SkPdfSubmitFormActionDictionary::Flags() const { + long ret; + if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "Flags", "", &ret)) return ret; + // TODO(edisonn): warn about missing required field, assert for known good pdfs + return 0; +} |