Fix crash when providing bad command line argument
[clinton/bobotpp.git] / source / DCCManager.H
index 828a09e..e5c2fc1 100644 (file)
 #ifndef DCC_MANAGER_H
 #define DCC_MANAGER_H
 
-#include <map>
 #include <list>
-#include "DCCPerson.H"
-#include "DCCConnection.H"
-#include "UserCommands.H"
+#include <map>
+
+#include <sys/types.h>
+#include <unistd.h>
+
 #include "String.H"
+#include "UserCommands.H"
+
+class DCCConnection;
+class DCCPerson;
+class Person;
+class ServerConnection;
 
 typedef std::map<String, DCCPerson*, std::less<String> > DCC_MAP;