X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=include%2Ffnetorderstream.h;h=bb084b15e5c65148d11c5867dfabbb9f36784cb0;hb=3d52fe3684ae9f5bf411c6ec4476381932ca6d00;hp=f58550b32923a76944141e1ae48af764ba93fced;hpb=9ff5b5165b2c8871bd4b29ccd5ca794638414615;p=ctsim.git diff --git a/include/fnetorderstream.h b/include/fnetorderstream.h index f58550b..bb084b1 100644 --- a/include/fnetorderstream.h +++ b/include/fnetorderstream.h @@ -9,7 +9,7 @@ ** This is part of the CTSim program ** Copyright (c) 1983-2001 Kevin Rosenberg ** -** $Id: fnetorderstream.h,v 1.9 2001/03/13 04:44:25 kevin Exp $ +** $Id: fnetorderstream.h,v 1.11 2002/05/30 06:18:11 kevin Exp $ ** ** This program is free software; you can redistribute it and/or modify ** it under the terms of the GNU General Public License (version 2) as @@ -118,7 +118,7 @@ void ConvertReverseNetworkOrder (void* buffer, size_t bytes); using std::fstream; class fnetorderstream : public fstream { public: - fnetorderstream (const char* filename, int mode) + fnetorderstream (const char* filename, std::ios::openmode mode) : fstream (filename, mode) {} ~fnetorderstream (void) @@ -138,7 +138,7 @@ class fnetorderstream : public fstream { class frnetorderstream : public fnetorderstream { public: - frnetorderstream (const char* filename, int mode) + frnetorderstream (const char* filename, std::ios::openmode mode) : fnetorderstream (filename, mode) {} virtual void writeInt16 (kuint16 n);