expose C++ fstream classes

This commit is contained in:
David Rose 2009-12-15 23:03:18 +00:00
parent c279dedce1
commit 538b8dafdc
2 changed files with 19 additions and 3 deletions

View File

@ -69,10 +69,22 @@ __published:
void flush();
};
class ofstream : public ostream {
__published:
ofstream();
void close();
};
class ifstream : public istream {
__published:
ifstream();
void close();
};
class fstream : public iostream {
__published:
fstream();
void close();
};
class ofstream : public ostream {};
class ifstream : public istream {};
class fstream : public iostream {};
class ostringstream : public ostream {};
class istringstream : public istream {};
class stringstream : public iostream {};

View File

@ -22,6 +22,10 @@ renametype FileStream FileStream
forcetype IDecryptStream
forcetype OEncryptStream
forcetype ofstream
forcetype ifstream
forcetype fstream
forcetype DConfig
forcetype ConfigFlags
forcetype ConfigPage