expose C++ fstream classes
This commit is contained in:
parent
c279dedce1
commit
538b8dafdc
|
|
@ -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 {};
|
||||
|
|
|
|||
|
|
@ -22,6 +22,10 @@ renametype FileStream FileStream
|
|||
forcetype IDecryptStream
|
||||
forcetype OEncryptStream
|
||||
|
||||
forcetype ofstream
|
||||
forcetype ifstream
|
||||
forcetype fstream
|
||||
|
||||
forcetype DConfig
|
||||
forcetype ConfigFlags
|
||||
forcetype ConfigPage
|
||||
|
|
|
|||
Loading…
Reference in New Issue