8a53433249
Files : Aggiunto incstr.cpp git-svn-id: svn://10.65.10.50/trunk@12155 c028cbd2-c16b-5b4b-a496-9718f37d4682
22 lines
328 B
C++
Executable File
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
|