StreamWriter: add a PutChar method to write a single char.
parent
aadb413fc0
commit
e549705af0
|
@ -203,6 +203,12 @@ public:
|
||||||
Put(n);
|
Put(n);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ---------------------------------------------------------------------
|
||||||
|
/** Write a single character to the stream */
|
||||||
|
void PutChar(char c) {
|
||||||
|
Put(c);
|
||||||
|
}
|
||||||
|
|
||||||
// ---------------------------------------------------------------------
|
// ---------------------------------------------------------------------
|
||||||
/** Write an aiString to the stream */
|
/** Write an aiString to the stream */
|
||||||
void PutString(const aiString& s)
|
void PutString(const aiString& s)
|
||||||
|
|
Loading…
Reference in New Issue