/**
  * @return ICWP_WPSF_Ip
  */
 public static function GetInstance()
 {
     if (is_null(self::$oInstance)) {
         self::$oInstance = new self();
     }
     return self::$oInstance;
 }
 /**
  * @return ICWP_WPSF_Ip
  */
 public static function loadIpProcessor()
 {
     if (!isset(self::$oIp)) {
         require_once dirname(__FILE__) . ICWP_DS . 'icwp-ip.php';
         self::$oIp = ICWP_WPSF_Ip::GetInstance();
     }
     return self::$oIp;
 }