blob: cb780e563b5281c7a04e245cad603f6c350851cb [file] [log] [blame]
#include "SkPdfTableAttributesDictionary_autogen.h"
long SkPdfTableAttributesDictionary::RowSpan() const {
long ret;
if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "RowSpan", "", &ret)) return ret;
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}
long SkPdfTableAttributesDictionary::ColSpan() const {
long ret;
if (LongFromDictionary(fPodofoDoc, fPodofoObj->GetDictionary(), "ColSpan", "", &ret)) return ret;
// TODO(edisonn): warn about missing required field, assert for known good pdfs
return 0;
}