/**
  * Get ZResponse instance
  * @return Zoombi_Response
  */
 public static final function &getInstance()
 {
     if (self::$m_instance === null) {
         self::$m_instance = new self();
     }
     return self::$m_instance;
 }