RiIOWriteBinary[ IO | Source | Search | Keywords | Summary | Ancestors | All Members | Descendants ]
| public: | |
| // Constructors and assignment | |
| RiIOWriteBinary(ostream &out); | |
| // Members | |
| bool | WriteChar(char c); |
| bool | WriteUChar(unsigned char c); |
| bool | WriteChars(char *s, int len); |
| bool | WriteUChars(unsigned char *s, int len); |
| bool | WriteUShort(int s); |
| bool | WriteUInt(unsigned int i); |
| bool | WriteInt(int i); |
| bool | WriteReal(RiReal r); |
| bool | WriteVector2(const RiVector2 &v); |
| bool | WriteVector3(const RiVector3 &v); |
| protected: |
RiIOWriteBinary(ostream &out);
Default Constructor
RiIOWriteBinary(ostream &out);
virtual bool WriteChar(char c);
virtual bool WriteUChar(unsigned char c);
virtual bool WriteChars(char *s, int len);
virtual bool WriteUChars(unsigned char *s, int len);
virtual bool WriteUShort(int s);
virtual bool WriteUInt(unsigned int i);
virtual bool WriteInt(int i);
virtual bool WriteReal(RiReal r);
virtual bool WriteVector2(const RiVector2 &v);
virtual bool WriteVector3(const RiVector3 &v);
| public: | ||
|---|---|---|
| // Members | ||
| bool | WriteChar(char c); | // pure virtual |
| bool | WriteUChar(unsigned char c); | // pure virtual |
| bool | WriteChars(char *s, int len); | // pure virtual |
| bool | WriteUChars(unsigned char *s, int len); | // pure virtual |
| bool | WriteUShort(int s); | // pure virtual |
| bool | WriteUInt(unsigned int i); | // pure virtual |
| bool | WriteInt(int i); | // pure virtual |
| bool | WriteReal(RiReal r); | // pure virtual |
| bool | WriteVector2(const RiVector2 &v); | // pure virtual |
| bool | WriteVector3(const RiVector3 &v); | // pure virtual |
| protected: | ||