| OLD | NEW |
| 1 #ifndef __DEFINED__SkPdfStream | 1 #ifndef __DEFINED__SkPdfStream |
| 2 #define __DEFINED__SkPdfStream | 2 #define __DEFINED__SkPdfStream |
| 3 | 3 |
| 4 #include "SkPdfUtils.h" | 4 #include "SkPdfUtils.h" |
| 5 #include "SkPdfEnums_autogen.h" | 5 #include "SkPdfEnums_autogen.h" |
| 6 #include "SkPdfArray_autogen.h" | 6 #include "SkPdfArray_autogen.h" |
| 7 #include "SkPdfObject_autogen.h" | 7 #include "SkPdfObject_autogen.h" |
| 8 | 8 |
| 9 class SkPdfStream : public SkPdfObject { | 9 class SkPdfStream : public SkPdfObject { |
| 10 public: | 10 public: |
| (...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 553 | 553 |
| 554 SkPdfStream(const SkPdfStream& from) : SkPdfObject(from.fPodofoDoc, from.fPodo
foObj) {} | 554 SkPdfStream(const SkPdfStream& from) : SkPdfObject(from.fPodofoDoc, from.fPodo
foObj) {} |
| 555 | 555 |
| 556 virtual bool valid() const {return true;} | 556 virtual bool valid() const {return true;} |
| 557 | 557 |
| 558 SkPdfStream& operator=(const SkPdfStream& from) {this->fPodofoDoc = from.fPodo
foDoc; this->fPodofoObj = from.fPodofoObj; return *this;} | 558 SkPdfStream& operator=(const SkPdfStream& from) {this->fPodofoDoc = from.fPodo
foDoc; this->fPodofoObj = from.fPodofoObj; return *this;} |
| 559 | 559 |
| 560 }; | 560 }; |
| 561 | 561 |
| 562 #endif // __DEFINED__SkPdfStream | 562 #endif // __DEFINED__SkPdfStream |
| OLD | NEW |