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
|
|
|
|
#ifndef _INC_FSTREAM
|
|
|
|
#include <fstream.h>
|
|
|
|
#endif
|
|
|
|
#include <strstrea.h>
|
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
|