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

ソースコードを見る。

構成

class  ofxSATTimeDiff
 時刻差を表現するクラス [詳細]
 

関数

ofxSATTimeDiff operator+ (ofxSATTimeDiff const &x, ofxSATTimeDiff const &y)
 
ofxSATTimeDiff operator- (ofxSATTimeDiff const &x, ofxSATTimeDiff const &y)
 
ofxSATTimeDiff operator* (ofxSATTimeDiff const &x, int y)
 
ofxSATTimeDiff operator/ (ofxSATTimeDiff const &x, int y)
 
ofxSATTimeDiff operator% (ofxSATTimeDiff const &x, int y)
 
bool operator== (ofxSATTimeDiff const &x, ofxSATTimeDiff const &y)
 
bool operator!= (ofxSATTimeDiff const &x, ofxSATTimeDiff const &y)
 
bool operator< (ofxSATTimeDiff const &x, ofxSATTimeDiff const &y)
 
bool operator<= (ofxSATTimeDiff const &x, ofxSATTimeDiff const &y)
 
bool operator> (ofxSATTimeDiff const &x, ofxSATTimeDiff const &y)
 
bool operator>= (ofxSATTimeDiff const &x, ofxSATTimeDiff const &y)
 

説明

ARTSAT API で利用する時刻差を表現するクラスを含みます。

関数

ofxSATTimeDiff operator+ ( ofxSATTimeDiff const &  x,
ofxSATTimeDiff const &  y 
)

値を加算します。

引数
[in]x左辺値
[in]y右辺値
戻り値
時刻差
ofxSATTimeDiff operator- ( ofxSATTimeDiff const &  x,
ofxSATTimeDiff const &  y 
)

値を減算します。

引数
[in]x左辺値
[in]y右辺値
戻り値
時刻差
ofxSATTimeDiff operator* ( ofxSATTimeDiff const &  x,
int  y 
)

値を乗算します。

引数
[in]x左辺値
[in]y右辺値
戻り値
時刻差
ofxSATTimeDiff operator/ ( ofxSATTimeDiff const &  x,
int  y 
)

値を除算します。

引数
[in]x左辺値
[in]y右辺値
戻り値
時刻差
ofxSATTimeDiff operator% ( ofxSATTimeDiff const &  x,
int  y 
)

値の剰余を計算します。

引数
[in]x左辺値
[in]y右辺値
戻り値
時刻差
bool operator== ( ofxSATTimeDiff const &  x,
ofxSATTimeDiff const &  y 
)

値を比較します。

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

値を逆比較します。

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

値の大小(未満)を比較します。

引数
[in]x左辺値
[in]y右辺値
戻り値
比較結果
戻り値
true真 (this < param)
false偽 (this >= param)
bool operator<= ( ofxSATTimeDiff const &  x,
ofxSATTimeDiff const &  y 
)

値の大小(以下)を比較します。

引数
[in]x左辺値
[in]y右辺値
戻り値
比較結果
戻り値
true真 (this <= param)
false偽 (this > param)
bool operator> ( ofxSATTimeDiff const &  x,
ofxSATTimeDiff const &  y 
)

値の大小(より大きい)を比較します。

引数
[in]x左辺値
[in]y右辺値
戻り値
比較結果
戻り値
true真 (this > param)
false偽 (this <= param)
bool operator>= ( ofxSATTimeDiff const &  x,
ofxSATTimeDiff const &  y 
)

値の大小(以上)を比較します。

引数
[in]x左辺値
[in]y右辺値
戻り値
比較結果
戻り値
true真 (this >= param)
false偽 (this < param)