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

Side by Side Diff: experimental/PdfViewer/SkPdfName_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__SkPdfName 1 #ifndef __DEFINED__SkPdfName
2 #define __DEFINED__SkPdfName 2 #define __DEFINED__SkPdfName
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 SkPdfName : public SkPdfObject { 8 class SkPdfName : public SkPdfObject {
9 public: 9 public:
10 virtual SkPdfObjectType getType() const { return kObjectName_SkPdfObjectType;} 10 virtual SkPdfObjectType getType() const { return kName_SkPdfObjectType;}
11 virtual SkPdfObjectType getTypeEnd() const { return (SkPdfObjectType)(kObjectN ame_SkPdfObjectType + 1);} 11 virtual SkPdfObjectType getTypeEnd() const { return (SkPdfObjectType)(kName_Sk PdfObjectType + 1);}
12 public: 12 public:
13 virtual SkPdfName* asName() {return this;} 13 virtual SkPdfName* asName() {return this;}
14 virtual const SkPdfName* asName() const {return this;} 14 virtual const SkPdfName* asName() 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 SkPdfNull* asNull() {return NULL;} 533 virtual SkPdfNull* asNull() {return NULL;}
534 virtual const SkPdfNull* asNull() const {return NULL;} 534 virtual const SkPdfNull* asNull() 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 const std::string& value() const {return fPodofoObj->GetName().GetName();} 546 const std::string& value() const {return fPodofoObj->GetName().GetName();}
547 private: 547 private:
548 public: 548 public:
549 SkPdfName(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfObject(podofoDoc, podofoObj) {} 549 SkPdfName(const PdfMemDocument* podofoDoc = NULL, const PdfObject* podofoObj = NULL) : SkPdfObject(podofoDoc, podofoObj) {}
550 550
551 virtual bool valid() const {return true;} 551 virtual bool valid() const {return true;}
552 552
553 SkPdfName& operator=(const SkPdfName& from) {this->fPodofoDoc = from.fPodofoDo c; this->fPodofoObj = from.fPodofoObj; return *this;} 553 SkPdfName& operator=(const SkPdfName& from) {this->fPodofoDoc = from.fPodofoDo c; this->fPodofoObj = from.fPodofoObj; return *this;}
554 554
555 }; 555 };
556 556
557 #endif // __DEFINED__SkPdfName 557 #endif // __DEFINED__SkPdfName
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698