]> jfr.im git - irc/gameservirc.git/blobdiff - gameserv/list.h
Made it so missing directives are found on a config file load.
[irc/gameservirc.git] / gameserv / list.h
index 5469257ce90da415c23ec89043fcc9cad6fdde84..e51d6f5a2a1dfd3d9a0561092916cd30879555e2 100644 (file)
@@ -1,11 +1,16 @@
 #ifndef LIST_H
 #define LIST_H
 
-#include <iostream.h>
+#include <iostream>
 #include <cassert>
 #include "listnode.h"
 #include "aClient.h"
 #include "extern.h"
+#include "options.h"
+
+using std::cout;
+using std::endl;
+using std::flush;
 
 template <class T>
 class List {
@@ -186,7 +191,6 @@ void List<T>::print() const
        cout << endl;
        currentPtr = currentPtr->next;
     }
-
 }
 #endif