public static function getInstance()
 {
     if (self::$c_instance == NULL) {
         self::$c_instance = new self();
     }
     return self::$c_instance;
 }