Copyright updated, menu class added for 'home'
[shipsimu.git] / application / ship-simu / main / structures / extended / class_BaseUpperStructure.php
index fe3070e2d51f62d9ceb3e618e1ea91976ca94660..0bf0819d6c0a25050054276d238f0280ebd60e2e 100644 (file)
@@ -4,9 +4,9 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright(c) 2007, 2008 Roland Haeder, this is free software
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 Ship-Simu Developer Team
  * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.org
+ * @link               http://www.ship-simu.org
  *
  * 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
 class BaseUpperStructure extends BaseStructure {
        /**
         * Constructor for all super structures on a ship
+        *
+        * @return      void
         */
-       protected function __construct ($class) {
+       protected function __construct ($className) {
                // Call parent constructor
-               parent::__construct($class);
-
-               // Set description
-               $this->setObjectDescription("Aufbauten");
+               parent::__construct($className);
        }
 }