campo-sirio/xvaga/incstr.h
alex 8a53433249 Patch : 2.1 nopatch (linux)
Files :

Aggiunto incstr.cpp


git-svn-id: svn://10.65.10.50/trunk@12155 c028cbd2-c16b-5b4b-a496-9718f37d4682
2004-06-07 08:55:24 +00:00

22 lines
328 B
C++
Executable File

#ifndef __INCSTR_H
#define __INCRSTR_H
#ifdef WIN32
#ifndef _INC_FSTREAM
#include <fstream.h>
#endif
#include <strstrea.h>
istream & eatwhite(istream & i) { i.eatwhite(); }
#else // WIN32
#include <fstream>
#include <iostream>
#include <sstream>
using namespace std;
istream & eatwhite(istream & i);
#endif //WIN32
#endif