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

Side by Side Diff: experimental/PdfViewer/SkPdfNull_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__SkPdfNull 1 #ifndef __DEFINED__SkPdfNull
2 #define __DEFINED__SkPdfNull 2 #define __DEFINED__SkPdfNull
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 SkPdfNull : public SkPdfObject { 8 class SkPdfNull : public SkPdfObject {
9 public: 9 public:
10 virtual SkPdfObjectType getType() const { return kObjectNull_SkPdfObjectType;} 10 virtual SkPdfObjectType getType() const { return kNull_SkPdfObjectType;}
11 virtual SkPdfObjectType getTypeEnd() const { return (SkPdfObjectType)(kObjectN ull_SkPdfObjectType + 1);} 11 virtual SkPdfObjectType getTypeEnd() const { return (SkPdfObjectType)(kNull_Sk PdfObjectType + 1);}
12 public: 12 public:
13 virtual SkPdfNull* asNull() {return this;} 13 virtual SkPdfNull* asNull() {return this;}
14 virtual const SkPdfNull* asNull() const {return this;} 14 virtual const SkPdfNull* asNull() 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 SkPdfInteger* asInteger() {return NULL;} 527 virtual SkPdfInteger* asInteger() {return NULL;}
531 virtual const SkPdfInteger* asInteger() const {return NULL;} 528 virtual const SkPdfInteger* asInteger() const {return NULL;}
532 529
530 virtual SkPdfNumber* asNumber() {return NULL;}
531 virtual const SkPdfNumber* asNumber() const {return NULL;}
532
533 virtual SkPdfName* asName() {return NULL;} 533 virtual SkPdfName* asName() {return NULL;}
534 virtual const SkPdfName* asName() const {return NULL;} 534 virtual const SkPdfName* asName() const {return NULL;}
535 535
536 virtual SkPdfNumber* asNumber() {return NULL;}
537 virtual const SkPdfNumber* asNumber() const {return NULL;}
538
539 virtual SkPdfReference* asReference() {return NULL;} 536 virtual SkPdfReference* asReference() {return NULL;}
540 virtual const SkPdfReference* asReference() const {return NULL;} 537 virtual const SkPdfReference* asReference() const {return NULL;}
541 538
542 virtual SkPdfString* asString() {return NULL;} 539 virtual SkPdfString* asString() {return NULL;}
543 virtual const SkPdfString* asString() const {return NULL;} 540 virtual const SkPdfString* asString() const {return NULL;}
544 541
542 virtual SkPdfHexString* asHexString() {return NULL;}
543 virtual const SkPdfHexString* asHexString() const {return NULL;}
544
545 public: 545 public:
546 private: 546 private:
547 public: 547 public:
548 SkPdfNull(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfObject(podofoDoc, podofoObj) {} 548 SkPdfNull(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfObject(podofoDoc, podofoObj) {}
549 549
550 virtual bool valid() const {return true;} 550 virtual bool valid() const {return true;}
551 551
552 SkPdfNull& operator=(const SkPdfNull& from) {this->fPodofoDoc = from.fPodofoDo c; this->fPodofoObj = from.fPodofoObj; return *this;} 552 SkPdfNull& operator=(const SkPdfNull& from) {this->fPodofoDoc = from.fPodofoDo c; this->fPodofoObj = from.fPodofoObj; return *this;}
553 553
554 }; 554 };
555 555
556 #endif // __DEFINED__SkPdfNull 556 #endif // __DEFINED__SkPdfNull
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698