Fix crash when providing bad command line argument
[clinton/bobotpp.git] / source / DCCManager.H
index 749e29e..e5c2fc1 100644 (file)
 
 // You should have received a copy of the GNU General Public License
 // along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307, USA.
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
 #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;