]> jfr.im git - irc/gameservirc.git/blobdiff - gameserv/list.h
P10 is now functional. The game is playable, but it does not display text nicknames...
[irc/gameservirc.git] / gameserv / list.h
index 944035dd531df4ccdb32a36a0064d14f62df9b4a..e51d6f5a2a1dfd3d9a0561092916cd30879555e2 100644 (file)
@@ -6,9 +6,11 @@
 #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 {
@@ -189,7 +191,6 @@ void List<T>::print() const
        cout << endl;
        currentPtr = currentPtr->next;
     }
-
 }
 #endif