mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
27 lines
299 B
C++
27 lines
299 B
C++
/*
|
|
History
|
|
=======
|
|
|
|
Notes
|
|
=======
|
|
|
|
*/
|
|
|
|
#include "../clib/stl_inc.h"
|
|
|
|
#include <string.h>
|
|
|
|
#include "ofile.h"
|
|
|
|
|
|
#if 0
|
|
|
|
void OFile::printOn(ostream& os) const
|
|
{
|
|
if (!fc) return;
|
|
int fpos = -1;
|
|
fc->tell(fpos);
|
|
os << fc->filename_ << " offset " << fpos;
|
|
}
|
|
|
|
#endif
|