blob: b45c36bd8a8d1379b57f14b7b4daaffab59caa36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
pdbcat.C | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/pdbcat.C b/pdbcat.C
index 0786d9b..387edf9 100644
--- a/pdbcat.C
+++ b/pdbcat.C
@@ -17,7 +17,8 @@
#include <stdlib.h> // for exit
#include <stdio.h> // for feof() and other file manip stuff
#include <string.h> // for strcasecmp
-#include <iostream.h>
+#include <iostream>
+using namespace std;
#include "Common.h"
#include "PDBData.h"
|