format
[PHP-P10.git] / BotLoader / Bot.class.php
index 303163d40d8832b5add7fc5344dc0d078a022468..c24e51e8248033fd19f90ba5fca6324fc9f800e1 100644 (file)
@@ -1,12 +1,12 @@
 <?php
 /******************************* PHP-P10 v2 *****************************
- * Copyright (C) 2011  Philipp Kreil (pk910)                            *
+ * Copyright (C) 2011-2012  Philipp Kreil (pk910)                       *
  *                                                                      *
  * This program is free software: you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
  * the Free Software Foundation, either version 3 of the License, or    *
  * (at your option) any later version.                                  *
- *                                                                      * 
+ *                                                                      *
  * This program is distributed in the hope that it will be useful,      *
  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
@@ -16,7 +16,7 @@
  * along with this program. If not, see <http://www.gnu.org/licenses/>. *
  *                                                                      *
  ************************************************************************
- * 
+ *
  *  BotLoader/Bot.class.php
  *
  * bots' parent class.
 
 class Bot {
        private $db_section = NULL;
-       
+
        public function load($uplink, $oldDatas = null) {
-       
+
        }
-       
+
        public function unload($rehash = false) {
-       
+
        }
-       
+
        public function loop() {
-       
+
        }
-       
+
        public function writeDB() {
-               
+
        }
-       
+
        public function readDB($value) {
-       
+
        }
-       
+
        public function getDBSection() {
                return $this->db_section;
        }
-       
+
        public function setDBSection($section) {
                $this->db_section = $section;
        }