00001 #ifndef PIRCBOT_ALL_H 00002 #define PIRCBOT_ALL_H 00003 00004 /* 00005 * pircbotcpp, C++ port of the pircbot Java version 00006 * A IRC C++ software development kit. An Object 00007 * Oriented client framework which lets you 00008 * write quick and easy C++ IRC bots 00009 * 00010 * Copyright (C) 2006 Frank Hassanabad 00011 * http://pircbotcpp.sourceforge.net/ 00012 * 00013 * Java version 00014 * Copyright Paul James Mutton, 2001-2004, http://www.jibble.org/ 00015 * 00016 * This library is free software; you can redistribute it and/or 00017 * modify it under the terms of the GNU General Public 00018 * License as published by the Free Software Foundation; either 00019 * version 2.1 of the License, or (at your option) any later version. 00020 * 00021 * This library is distributed in the hope that it will be useful, 00022 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00023 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00024 * General Public License for more details. 00025 * 00026 * You should have received a copy of the GNU General Public 00027 * License along with this library; if not, write to the Free Software 00028 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 00029 */ 00030 00031 /* 00032 * Includes all the interfaces all at once 00033 * since most of the time you would use them 00034 * all at once. 00035 */ 00036 00037 //pircbot includes 00038 00039 00040 #include <pircbot/exports.h> 00041 #include <pircbot/Colors.h> 00042 #include <pircbot/Exceptions.h> 00043 #include <pircbot/PircBot.h> 00044 #include <pircbot/ReplyConstants.h> 00045 #include <pircbot/User.h> 00046 00047 #endif