/**
  * Constructor
  *
  * @param    object   Parent object reference
  * @param    string   Parent class name, used for ini parsing (section prefix)
  * @return   void
  */
 public function __construct($parent)
 {
     $this->___parent = $parent;
     $this->_config =& $this->___parent->_config;
     // Assign version
     if ($this->_version === false) {
         $this->_version = $this->___parent->getAppSrvVersion();
     }
 }