ARTSAT API  2.7.1
 全て クラス ファイル 関数 変数 型定義 列挙型 列挙型の値 マクロ定義 ページ
ofxSATError.h

ソースコードを見る。

構成

class  ofxSATError
 エラー値を表現するクラス [詳細]
 

列挙型

enum  SATErrorEnum {
  SATERROR_OK, SATERROR_FAILED, SATERROR_NO_SUPPORT, SATERROR_NO_RESULT,
  SATERROR_NO_MEMORY, SATERROR_INVALID_PARAM, SATERROR_INVALID_STATE, SATERROR_INVALID_FORMAT,
  SATERROR_WAIT_RESULT, SATERROR_NETWORK_DOWN, SATERROR_NETWORK_CODE, SATERROR_LIMIT
}
 

関数

bool operator== (ofxSATError const &x, ofxSATError const &y)
 
bool operator== (ofxSATError const &x, int y)
 
bool operator== (int x, ofxSATError const &y)
 
bool operator!= (ofxSATError const &x, ofxSATError const &y)
 
bool operator!= (ofxSATError const &x, int y)
 
bool operator!= (int x, ofxSATError const &y)
 

説明

ARTSAT API で利用するエラー定数とエラー値を表現するクラスを含みます。

列挙型

ARTSAT API が定義するエラー定数です。 ofxSATError クラスに代入して利用します。 SATERROR_OK はエラーなしを表します。 SATERROR_LIMIT は具体的なエラーを表す値ではなくエラー定数の最大値を表します。

列挙型の値:
SATERROR_OK 

エラーなし

SATERROR_FAILED 

一般的なエラー

SATERROR_NO_SUPPORT 

関数や機能がサポートされていない

SATERROR_NO_RESULT 

結果が存在しない

SATERROR_NO_MEMORY 

空きメモリが確保できない

SATERROR_INVALID_PARAM 

引数が正しくない

SATERROR_INVALID_STATE 

関数や機能の内部状態が正しくない

SATERROR_INVALID_FORMAT 

書式が正しくない

SATERROR_WAIT_RESULT 

結果を即時に取得できない

SATERROR_NETWORK_DOWN 

ネットワークが接続されていない

SATERROR_NETWORK_CODE 

ネットワークレスポンスのステータスコードが正しくない

SATERROR_LIMIT 

エラー定数の最大値

関数

bool operator== ( ofxSATError const &  x,
ofxSATError const &  y 
)

値を比較します。

引数
[in]x左辺値
[in]y右辺値
戻り値
比較結果
戻り値
true同じ
false同じでない
bool operator== ( ofxSATError const &  x,
int  y 
)

値を比較します。

引数
[in]x左辺値
[in]y右辺値
戻り値
比較結果
戻り値
true同じ
false同じでない
bool operator== ( int  x,
ofxSATError const &  y 
)

値を比較します。

引数
[in]x左辺値
[in]y右辺値
戻り値
比較結果
戻り値
true同じ
false同じでない
bool operator!= ( ofxSATError const &  x,
ofxSATError const &  y 
)

値を逆比較します。

引数
[in]x左辺値
[in]y右辺値
戻り値
比較結果
戻り値
true同じでない
false同じ
bool operator!= ( ofxSATError const &  x,
int  y 
)

値を逆比較します。

引数
[in]x左辺値
[in]y右辺値
戻り値
比較結果
戻り値
true同じでない
false同じ
bool operator!= ( int  x,
ofxSATError const &  y 
)

値を逆比較します。

引数
[in]x左辺値
[in]y右辺値
戻り値
比較結果
戻り値
true同じでない
false同じ