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

ソースコードを見る。

構成

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

関数

ofxSATTime operator+ (ofxSATTime const &x, ofxSATTimeDiff const &y)
 
ofxSATTime operator- (ofxSATTime const &x, ofxSATTimeDiff const &y)
 
ofxSATTimeDiff operator- (ofxSATTime const &x, ofxSATTime const &y)
 
bool operator== (ofxSATTime const &x, ofxSATTime const &y)
 
bool operator!= (ofxSATTime const &x, ofxSATTime const &y)
 
bool operator< (ofxSATTime const &x, ofxSATTime const &y)
 
bool operator<= (ofxSATTime const &x, ofxSATTime const &y)
 
bool operator> (ofxSATTime const &x, ofxSATTime const &y)
 
bool operator>= (ofxSATTime const &x, ofxSATTime const &y)
 

説明

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

関数

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

時刻と時刻差を加算します。

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

時刻から時刻差を減算します。

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

時刻から時刻を減算します。

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

値を比較します。

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

値を逆比較します。

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

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

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

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

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

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

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

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

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