blob: 530d4d49c9df086518b515b7b6c06d47d27cf5c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
--- tochnog.h.orig Sat Jul 12 13:05:15 2003
+++ tochnog.h Sat Jul 12 15:29:05 2003
@@ -17,12 +17,25 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-#include <iostream.h>
+#include <iostream>
+// C++ iostream compatibility stuff
+using std::ios;
+using std::cout;
+using std::cin;
+using std::flush;
+//end iostream compatibility stuff
+
#include <assert.h>
#include <ctype.h>
#include <float.h>
-#include <fstream.h>
-#include <iomanip.h>
+#include <fstream>
+// C++ fstream compatibility stuff
+using std::ifstream;
+using std::ofstream;
+using std::fstream;
+//end fstream compatibility stuff
+
+#include <iomanip>
#include <math.h>
#include <limits.h>
#include <stdio.h>
|