StreamWriter: add a PutChar method to write a single char.

pull/1858/head
Tommy 2018-03-28 21:38:22 +02:00
parent aadb413fc0
commit e549705af0
1 changed files with 6 additions and 0 deletions

View File

@ -203,6 +203,12 @@ public:
Put(n);
}
// ---------------------------------------------------------------------
/** Write a single character to the stream */
void PutChar(char c) {
Put(c);
}
// ---------------------------------------------------------------------
/** Write an aiString to the stream */
void PutString(const aiString& s)