![]() |
ARTSAT API
2.7.1
|
構成 | |
| 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) |