2004-03-12 14:21:37 +00:00
|
|
|
#ifndef __INCSTR_H
|
|
|
|
#define __INCRSTR_H
|
2004-06-07 08:55:24 +00:00
|
|
|
|
2004-03-12 14:21:37 +00:00
|
|
|
#ifdef WIN32
|
2006-12-29 14:16:28 +00:00
|
|
|
#if _MSC_VER > 1300
|
|
|
|
#include <fstream>
|
|
|
|
#include <iostream>
|
|
|
|
#include <strstream>
|
|
|
|
using namespace std;
|
|
|
|
#else
|
|
|
|
#include <fstream.h>
|
|
|
|
#include <strstrea.h>
|
|
|
|
#endif
|
2004-06-07 08:55:24 +00:00
|
|
|
#else // WIN32
|
2004-03-12 14:21:37 +00:00
|
|
|
#include <fstream>
|
2004-06-07 08:55:24 +00:00
|
|
|
#include <iostream>
|
2004-03-12 14:21:37 +00:00
|
|
|
#include <sstream>
|
|
|
|
using namespace std;
|
2004-06-07 08:55:24 +00:00
|
|
|
|
|
|
|
#endif //WIN32
|
2004-06-07 12:37:57 +00:00
|
|
|
|
2004-03-12 14:21:37 +00:00
|
|
|
#endif
|