campo-sirio/xvaga/incstr.h
luca e9a4e4b36b Patch level :4.0 nopatch
Files correlati     :
Ricompilazione Demo : [ ]
Commento            :correzioni dovute al passaggio al nuovo compilatore


git-svn-id: svn://10.65.10.50/trunk@14698 c028cbd2-c16b-5b4b-a496-9718f37d4682
2006-12-29 14:16:28 +00:00

23 lines
358 B
C++
Executable File

#ifndef __INCSTR_H
#define __INCRSTR_H
#ifdef WIN32
#if _MSC_VER > 1300
#include <fstream>
#include <iostream>
#include <strstream>
using namespace std;
#else
#include <fstream.h>
#include <strstrea.h>
#endif
#else // WIN32
#include <fstream>
#include <iostream>
#include <sstream>
using namespace std;
#endif //WIN32
#endif