Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(250)

Side by Side Diff: experimental/PdfViewer/SkPdfInteger_autogen.h

Issue 17395005: put each generated pdf api class in a file (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 #ifndef __DEFINED__SkPdfInteger 1 #ifndef __DEFINED__SkPdfInteger
2 #define __DEFINED__SkPdfInteger 2 #define __DEFINED__SkPdfInteger
3 3
4 #include "SkPdfEnums_autogen.h" 4 #include "SkPdfEnums_autogen.h"
5 #include "SkPdfArray_autogen.h" 5 #include "SkPdfArray_autogen.h"
6 #include "SkPdfObject_autogen.h" 6 #include "SkPdfObject_autogen.h"
7 7
8 class SkPdfInteger : public SkPdfObject { 8 class SkPdfInteger : public SkPdfObject {
9 public: 9 public:
10 virtual SkPdfObjectType getType() const { return kObjectInteger_SkPdfObjectTyp e;} 10 virtual SkPdfObjectType getType() const { return kInteger_SkPdfObjectType;}
11 virtual SkPdfObjectType getTypeEnd() const { return (SkPdfObjectType)(kObjectI nteger_SkPdfObjectType + 1);} 11 virtual SkPdfObjectType getTypeEnd() const { return kInteger__End_SkPdfObjectT ype;}
12 public: 12 public:
13 virtual SkPdfInteger* asInteger() {return this;} 13 virtual SkPdfInteger* asInteger() {return this;}
14 virtual const SkPdfInteger* asInteger() const {return this;} 14 virtual const SkPdfInteger* asInteger() const {return this;}
15 15
16 private: 16 private:
17 virtual SkPdfArray* asArray() {return NULL;} 17 virtual SkPdfArray* asArray() {return NULL;}
18 virtual const SkPdfArray* asArray() const {return NULL;} 18 virtual const SkPdfArray* asArray() const {return NULL;}
19 19
20 virtual SkPdfBoolean* asBoolean() {return NULL;} 20 virtual SkPdfBoolean* asBoolean() {return NULL;}
21 virtual const SkPdfBoolean* asBoolean() const {return NULL;} 21 virtual const SkPdfBoolean* asBoolean() const {return NULL;}
(...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after
517 517
518 virtual SkPdfXObjectDictionary* asXObjectDictionary() {return NULL;} 518 virtual SkPdfXObjectDictionary* asXObjectDictionary() {return NULL;}
519 virtual const SkPdfXObjectDictionary* asXObjectDictionary() const {return NULL ;} 519 virtual const SkPdfXObjectDictionary* asXObjectDictionary() const {return NULL ;}
520 520
521 virtual SkPdfImageDictionary* asImageDictionary() {return NULL;} 521 virtual SkPdfImageDictionary* asImageDictionary() {return NULL;}
522 virtual const SkPdfImageDictionary* asImageDictionary() const {return NULL;} 522 virtual const SkPdfImageDictionary* asImageDictionary() const {return NULL;}
523 523
524 virtual SkPdfType1FormDictionary* asType1FormDictionary() {return NULL;} 524 virtual SkPdfType1FormDictionary* asType1FormDictionary() {return NULL;}
525 virtual const SkPdfType1FormDictionary* asType1FormDictionary() const {return NULL;} 525 virtual const SkPdfType1FormDictionary* asType1FormDictionary() const {return NULL;}
526 526
527 virtual SkPdfHexString* asHexString() {return NULL;}
528 virtual const SkPdfHexString* asHexString() const {return NULL;}
529
530 virtual SkPdfName* asName() {return NULL;} 527 virtual SkPdfName* asName() {return NULL;}
531 virtual const SkPdfName* asName() const {return NULL;} 528 virtual const SkPdfName* asName() const {return NULL;}
532 529
533 virtual SkPdfNull* asNull() {return NULL;} 530 virtual SkPdfNull* asNull() {return NULL;}
534 virtual const SkPdfNull* asNull() const {return NULL;} 531 virtual const SkPdfNull* asNull() const {return NULL;}
535 532
536 virtual SkPdfNumber* asNumber() {return NULL;}
537 virtual const SkPdfNumber* asNumber() const {return NULL;}
538
539 virtual SkPdfReference* asReference() {return NULL;} 533 virtual SkPdfReference* asReference() {return NULL;}
540 virtual const SkPdfReference* asReference() const {return NULL;} 534 virtual const SkPdfReference* asReference() const {return NULL;}
541 535
542 virtual SkPdfString* asString() {return NULL;} 536 virtual SkPdfString* asString() {return NULL;}
543 virtual const SkPdfString* asString() const {return NULL;} 537 virtual const SkPdfString* asString() const {return NULL;}
544 538
539 virtual SkPdfHexString* asHexString() {return NULL;}
540 virtual const SkPdfHexString* asHexString() const {return NULL;}
541
545 public: 542 public:
546 long value() const {return fPodofoObj->GetNumber();} 543 long value() const {return fPodofoObj->GetNumber();}
547 private: 544 private:
548 public: 545 public:
549 SkPdfInteger(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoOb j = NULL) : SkPdfObject(podofoDoc, podofoObj) {} 546 SkPdfInteger(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoOb j = NULL) : SkPdfObject(podofoDoc, podofoObj) {}
550 547
551 virtual bool valid() const {return true;} 548 virtual bool valid() const {return true;}
552 549
553 SkPdfInteger& operator=(const SkPdfInteger& from) {this->fPodofoDoc = from.fPo dofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;} 550 SkPdfInteger& operator=(const SkPdfInteger& from) {this->fPodofoDoc = from.fPo dofoDoc; this->fPodofoObj = from.fPodofoObj; return *this;}
554 551
555 }; 552 };
556 553
557 #endif // __DEFINED__SkPdfInteger 554 #endif // __DEFINED__SkPdfInteger
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698