blob: 77f3ff6a66e9c0c4c5cc98a2390effbcc7b1eba3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- ./classes/include/ArtsFileUtil.hh.orig Mon Oct 2 13:05:15 2000
+++ ./classes/include/ArtsFileUtil.hh Wed Sep 25 16:38:10 2002
@@ -43,9 +43,16 @@
#ifndef _ARTSFILEUTIL_HH_
#define _ARTSFILEUTIL_HH_
+#include "artslocal.h"
+
#include <string>
#include <vector>
-#include <fstream.h>
+
+#ifdef HAVE_FSTREAM
+# include <fstream>
+#else
+# include <fstream.h>
+#endif
#include "ArtsProtocolTableAggregatorMap.hh"
#include "ArtsInterfaceMatrixAggregatorMap.hh"
|