亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? xdatetime.h

?? BCB的學習資料
?? H
?? 第 1 頁 / 共 2 頁
字號:
    XLongTime & operator+= (const TDateTime &aDateTime);
    XLongTime & operator+= (const XTime &aTime);
    //operator-=
    XLongTime & operator-= (const XLongTime & aLongTime);
    XLongTime & operator-= (XInt aLongTime);
    XLongTime & operator-= (const XDateTime &aDateTime);
    XLongTime & operator-= (const TDateTime &aDateTime);
    XLongTime & operator-= (const XTime &aTime);
    //operator==
    bool operator==(const XLongTime & aLongTime) const;
    bool operator==(XInt aLongTime) const;
    bool operator==(const XDateTime &aDateTime) const;
    bool operator==(const TDateTime &aDateTime) const;
    bool operator==(const XTime &aTime) const;
    //operator!=
    bool operator!=(const XLongTime & aLongTime) const;
    bool operator!=(XInt aLongTime) const;
    bool operator!=(const XDateTime &aDateTime) const;
    bool operator!=(const TDateTime &aDateTime) const;
    bool operator!=(const XTime &aTime) const;
    //operator>=
    bool operator>=(XInt aLongTime) const;
    bool operator>=(const XLongTime & aLongTime) const;
    bool operator>=(const XDateTime &aDateTime) const;
    bool operator>=(const TDateTime &aDateTime) const;
    bool operator>=(const XTime &aTime) const;
    //operator<=
    bool operator<=(const XLongTime & aLongTime) const;
    bool operator<=(XInt aLongTime) const;
    bool operator<=(const XDateTime &aDateTime) const;
    bool operator<=(const TDateTime &aDateTime) const;
    bool operator<=(const XTime &aTime) const;
    //operator>
    bool operator>(XInt aLongTime) const;
    bool operator>(const XLongTime & aLongTime) const;
    bool operator>(const XDateTime &aDateTime) const;
    bool operator>(const TDateTime &aDateTime) const;
    bool operator>(const XTime &aTime) const;
    //operator<
    bool operator<(const XLongTime & aLongTime) const;
    bool operator<(XInt aLongTime) const;
    bool operator<(const XDateTime &aDateTime) const;
    bool operator<(const TDateTime &aDateTime) const;
    bool operator<(const XTime &aTime) const;
    //operator  ...()
    operator XTime() const;
    operator XInt() const { return m_LongTime; }
    operator TDateTime() const;
    operator XDateTime() const;

    //method SetLongTime
    void SetLongTime(int aHour=0,int aMinute=0,int aSecond=0,int aMillis = 0);
    void SetLongTime(const XTime & aTime);
    void SetLongTime(const XLongTime & aLongTime);
    void SetLongTime(const XDateTime & aDateTime);
    void SetLongTime(const TDateTime & aDateTime);
    void SetLongTime(const XInt & aLongTime);
    //method Add...
    void AddHour(int Hours);
    void AddMinute(int Minutes);
    void AddSecond(int Seconds);
    void AddMillis(int aMillis);
    //method Sub...
    void SubHour(int Hours);
    void SubMinute(int Minutes);
    void SubSecond(int Seconds);
    void SubMillis(int aMillis);
    //method GetLongTime
    XInt GetLongTime() const { return m_LongTime; }
    //method Decode
    XTime Decode() const;
    void Decode(int & aHour,int & aMinute,int &aSecond,int &aMillis) const;
    void Decode(XTime & aTime) const;
    //method RoundTime
    static XInt RoundTime(XInt aLongTime);
    //method CalcLongTime
    static XInt CalcLongTime(const XTime & aTime);
    static XInt CalcLongTime(const TDateTime & aDateTime);
    static XInt CalcLongTime(const XDateTime & aDateTime);
    static XInt CalcLongTime(int aHour = 0,int aMinute = 0,int aSecond = 0, int aMillis = 0 );
    //property
    __property XInt LongTime = { read = GetLongTime, write = SetLongTime };    
private:
    XInt m_LongTime;
};


class XDateTime
{
public:
    XDateTime();
    XDateTime(XLong aDateTime);
    XDateTime(const XDateTime & aDateTime);
    XDateTime(const TDateTime & aDateTime);
    XDateTime(const XLongDate & aLongDate,const XLongTime & aLongTime);
    XDateTime(const XDate & aDate,const XTime & aTime);
    XDateTime(const XDate & aDate);
    XDateTime(const XLongDate & aLongDate);
    XDateTime(const XTime & aTime);
    XDateTime(const XLongTime & aLongTime);
    XDateTime(const XDate & aDate,const XLongTime & aLongTime);
    XDateTime(const XLongDate & aLongDate,const XTime & aTime);
    XDateTime(int aYear,int aMonth,int aDay,int aHour,int aMinute,int aSecond,int aMillis=0);
    XDateTime(int aYear,int aMonth,int aDay);
    XDateTime(int aHour,int aMinute,int aSecond,int aMillis);

    XDateTime & operator=(const XDateTime & aDateTime);
    XDateTime & operator=(const TDateTime & aDateTime);
    XDateTime & operator=(const XLongDate & aLongDate);
    XDateTime & operator=(const XLong & aDateTime);
    XDateTime & operator=(const XLongTime & aLongTime);
    XDateTime & operator=(const XDate & aDate);
    XDateTime & operator=(const XTime & aTime);

    XDateTime & operator++();
    XDateTime & operator--();
    XDateTime operator++(int);
    XDateTime operator--(int);

    XDateTime & operator+=(XLong aDateTime);
    XDateTime & operator+=(const XDateTime & aDateTime );
    XDateTime & operator+=(const TDateTime & aDateTime );
    XDateTime & operator+=(const XDate & aDate);
    XDateTime & operator+=(const XTime & aTime);
    XDateTime & operator+=(const XLongDate & aLongDate );
    XDateTime & operator+=(const XLongTime & aLongTime );

    XDateTime & operator-=(XLong aDateTime);
    XDateTime & operator-=(const XDateTime & aDateTime );
    XDateTime & operator-=(const TDateTime & aDateTime );
    XDateTime & operator-=(const XDate & aDate);
    XDateTime & operator-=(const XTime & aTime);
    XDateTime & operator-=(const XLongDate & aLongDate );
    XDateTime & operator-=(const XLongTime & aLongTime );

    XDateTime operator+(XLong aDateTime) const;
    XDateTime operator+(const XDateTime & aDateTime ) const;
    XDateTime operator+(const TDateTime & aDateTime ) const;
    XDateTime operator+(const XDate & aDate) const;
    XDateTime operator+(const XTime & aTime) const;
    XDateTime operator+(const XLongDate & aLongDate ) const;
    XDateTime operator+(const XLongTime & aLongTime ) const; 

    XDateTime operator-(XLong aDateTime) const;
    XDateTime operator-(const XDateTime & aDateTime ) const;
    XDateTime operator-(const TDateTime & aDateTime ) const;
    XDateTime operator-(const XDate & aDate) const;
    XDateTime operator-(const XTime & aTime) const;
    XDateTime operator-(const XLongDate & aLongDate ) const;
    XDateTime operator-(const XLongTime & aLongTime ) const;

    bool operator==(XLong aDateTime) const;
    bool operator==(const XDateTime & aDateTime) const;
    bool operator==(const TDateTime & aDateTime) const;
    bool operator==(const XDate & aDate) const;
    bool operator==(const XTime & aTime) const;
    bool operator==(const XLongDate & aLongDate) const;
    bool operator==(const XLongTime & aLongTime) const;

    bool operator!=(XLong aDateTime) const;
    bool operator!=(const XDateTime & aDateTime) const;
    bool operator!=(const TDateTime & aDateTime) const;
    bool operator!=(const XDate & aDate) const;
    bool operator!=(const XTime & aTime) const;
    bool operator!=(const XLongDate & aLongDate) const;
    bool operator!=(const XLongTime & aLongTime) const;

    bool operator>=(XLong aDateTime) const;
    bool operator>=(const XDateTime & aDateTime) const;
    bool operator>=(const TDateTime & aDateTime) const;
    bool operator>=(const XDate & aDate) const;
    bool operator>=(const XTime & aTime) const;
    bool operator>=(const XLongDate & aLongDate) const;
    bool operator>=(const XLongTime & aLongTime) const;

    bool operator<=(XLong aDateTime) const;
    bool operator<=(const XDateTime & aDateTime) const;
    bool operator<=(const TDateTime & aDateTime) const;
    bool operator<=(const XDate & aDate) const;
    bool operator<=(const XTime & aTime) const;
    bool operator<=(const XLongDate & aLongDate) const;
    bool operator<=(const XLongTime & aLongTime) const;

    bool operator>(XLong aDateTime) const;
    bool operator>(const XDateTime & aDateTime) const;
    bool operator>(const TDateTime & aDateTime) const;
    bool operator>(const XDate & aDate) const;
    bool operator>(const XTime & aTime) const;
    bool operator>(const XLongDate & aLongDate) const;
    bool operator>(const XLongTime & aLongTime) const;

    bool operator<(XLong aDateTime) const;
    bool operator<(const XDateTime & aDateTime) const;
    bool operator<(const TDateTime & aDateTime) const;
    bool operator<(const XDate & aDate) const;
    bool operator<(const XTime & aTime) const;
    bool operator<(const XLongDate & aLongDate) const;
    bool operator<(const XLongTime & aLongTime) const;


    void AddMillis(XLong aMillis);
    void AddSecond(XLong aSeconds);
    void AddMinute(XLong aMinutes);
    void AddHour(XLong aHours);
    void AddDay(int aDays); 

    void SubMillis(XLong aMillis);
    void SubSecond(XLong aSeconds);
    void SubMinute(XLong aMinutes);
    void SubHour(XLong aHours);
    void SubDay(int aDays);

    void SetDateTime();
    void SetDateTime(XLong aDateTime);
    void SetDateTime(const XDateTime & aDateTime);
    void SetDateTime(const TDateTime & aDateTime);
    void SetDateTime(const XLongDate & aLongDate,const XLongTime & aLongTime);
    void SetDateTime(const XDate & aDate,const XTime & aTime);
    void SetDateTime(const XDate & aDate);
    void SetDateTime(const XLongDate & aLongDate);
    void SetDateTime(const XTime & aTime);
    void SetDateTime(const XLongTime & aLongTime);
    void SetDateTime(const XDate & aDate,const XLongTime & aLongTime);
    void SetDateTime(const XLongDate & aLongDate,const XTime & aTime);
    void SetDateTime(int aYear,int aMonth,int aDay,int aHour,int aMinute,int aSecond,int aMillis=0);
    void SetDateTime(int aYear,int aMonth,int aDay);
    void SetDateTime(int aHour,int aMinute,int aSecond,int aMillis);

    static XLong RoundDateTime(XLong aDateTime);

    static XLong CalcDateTime(const XDate & aDate);
    static XLong CalcDateTime(const XTime & aTime);
    static XLong CalcDateTime(const XLongDate & aLongDate);
    static XLong CalcDateTime(const XLongTime & aLongTime);
    static XLong CalcDateTime(const TDateTime & aDateTime);
    static XLong CalcDateTime(int aYear,int aMonth,int aDay);
    static XLong CalcDateTime(int aHour,int aMinute,int aSecond,int aMillis);
    static XLong CalcDateTime(int aYear,int aMonth,int aDay,int aHour,int aMinute,int aSecond,int aMillis);

    XTime DecodeTime() const;
    void DecodeTime( XTime & aTime ) const;
    void DecodeTime( int & aHour,int & aMinute, int & aSecond, int & aMillis ) const;

    XDate DecodeDate() const;
    void DecodeDate(XDate & aDate) const;
    void DecodeDate(int &aYear,int &aMonth,int & aDay) const;

    operator XTime() const;
    operator XDate() const;
    operator XLongTime() const;
    operator XLongDate() const;
    operator TDateTime() const;
    operator XLong() const { return m_DateTime; }

    XLong GetDateTime() const { return m_DateTime; }
    int   GetLongTime() const;
    int   GetLongDate() const;
private:
    XLong m_DateTime;
};


};
#endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久久久久久久久久黄色| 国产免费观看久久| 国产精品丝袜一区| 色综合天天综合网国产成人综合天| 色妞www精品视频| 亚洲图片自拍偷拍| 欧美电影一区二区三区| 在线观看欧美黄色| 久久久久久久综合| 亚洲小说欧美激情另类| 韩国成人精品a∨在线观看| 亚洲高清免费观看| 福利一区在线观看| 337p亚洲精品色噜噜噜| 国产精品国产三级国产三级人妇| 日韩电影一区二区三区| 99久久精品国产网站| 欧美日韩激情一区二区三区| 国内欧美视频一区二区 | 91免费看片在线观看| 在线视频国产一区| 天天综合网 天天综合色| 国产自产高清不卡| 久久久久久夜精品精品免费| 免费在线看成人av| 亚洲三级在线看| 国产jizzjizz一区二区| 亚洲第一福利一区| 亚洲成a人片综合在线| 99精品欧美一区二区蜜桃免费| 天天综合网 天天综合色| 色婷婷av一区| 日韩精品专区在线影院重磅| 日韩精品最新网址| 色婷婷久久久综合中文字幕 | 国产亚洲成年网址在线观看| 亚洲bt欧美bt精品| 成人欧美一区二区三区白人| 久草这里只有精品视频| 亚洲激情在线播放| 久久久久久综合| 韩国精品在线观看| 亚洲成人动漫在线观看| 精品一区二区三区的国产在线播放| 亚洲女同一区二区| 国产日韩欧美精品电影三级在线| 日韩国产在线观看一区| 欧美人伦禁忌dvd放荡欲情| 91色.com| 欧美精品一区二区三区在线| 欧美午夜电影在线播放| 不卡视频在线观看| 精品女同一区二区| 裸体健美xxxx欧美裸体表演| 国产福利一区二区三区| 美女性感视频久久| 天天综合色天天| 国产成人久久精品77777最新版本 国产成人鲁色资源国产91色综 | 国产精品伊人色| 日韩国产欧美在线视频| 蜜臀久久99精品久久久久久9| 日韩主播视频在线| 美女网站在线免费欧美精品| 久久久三级国产网站| 欧美一区二区三区视频在线| 国产成人午夜视频| 欧美r级电影在线观看| 亚洲国产一区二区a毛片| 欧美日韩精品欧美日韩精品一| 天天综合天天综合色| 偷拍一区二区三区| 中文字幕在线观看不卡视频| 在线看日韩精品电影| 国产精品初高中害羞小美女文| 中文字幕一区二区三区av | 亚洲国产一区二区在线播放| 日韩情涩欧美日韩视频| 成年人网站91| 日韩高清电影一区| 在线观看亚洲精品| 一区二区三区四区av| 欧美tickling挠脚心丨vk| 久久影院午夜论| 日韩一区欧美一区| 爽爽淫人综合网网站| 久久精品国产亚洲高清剧情介绍| 国产一区二区三区免费播放| 国产成人免费9x9x人网站视频| 色综合久久久久网| 日韩一级免费观看| 欧美午夜片在线看| 99国产精品国产精品久久| 成人免费在线视频| 欧美亚洲动漫精品| 久久久久久久综合色一本| 一区二区三区四区国产精品| 久久99九九99精品| 不卡欧美aaaaa| 欧美日韩精品电影| 91麻豆精品国产自产在线观看一区| 强制捆绑调教一区二区| www.亚洲色图| 日韩亚洲欧美高清| 亚洲伦理在线免费看| 蜜臀av一区二区| 亚洲欧美在线观看| 欧美激情一区三区| 色香蕉久久蜜桃| 亚洲国产精品精华液2区45| 亚洲精品国产无套在线观| 欧美日韩高清不卡| 国产精品麻豆一区二区| 黄网站免费久久| 国内外成人在线| 麻豆精品久久久| 色婷婷久久久综合中文字幕| 亚洲第一福利一区| 欧美精品一区二区久久婷婷| 99久久免费国产| 日本不卡的三区四区五区| 久久九九全国免费| 在线观看国产精品网站| 国产精品午夜在线| 国产在线精品一区二区夜色| 国产一区二区三区黄视频 | 国产一区二区三区四区五区入口 | 欧美日韩综合在线| 日韩美女一区二区三区| 91看片淫黄大片一级在线观看| 69堂国产成人免费视频| 一区二区三区免费网站| 久久精品在线免费观看| 日韩午夜激情视频| 成人免费黄色大片| 无吗不卡中文字幕| 欧美人xxxx| 国产麻豆成人精品| 欧美精品aⅴ在线视频| 欧美精品在欧美一区二区少妇| 337p亚洲精品色噜噜| 久久综合九色综合久久久精品综合| 国产一区 二区| 亚洲国产综合视频在线观看| 在线免费观看视频一区| 欧美综合欧美视频| 色呦呦网站一区| 国产欧美一区二区精品婷婷| 欧美日韩国产精选| 精品亚洲国产成人av制服丝袜| 成人av网站在线观看| 久久国产尿小便嘘嘘尿| 99精品在线免费| 成人午夜在线播放| 精品久久久久久久久久久院品网 | 日韩激情一区二区| 国产精品久99| 国产精品美女www爽爽爽| 婷婷久久综合九色综合绿巨人| 欧美一区二区视频在线观看 | 91成人在线观看喷潮| 国产精品高潮呻吟| 久久久久国产精品人| 亚洲午夜精品一区二区三区他趣| 一区二区三区四区激情| 欧美国产在线观看| 国产精品嫩草99a| 日韩av中文字幕一区二区三区| 亚洲欧美日韩一区二区| 亚洲精品久久久蜜桃| 不卡的av网站| 国产精品高潮呻吟久久| 国产精品一二三| 婷婷一区二区三区| 日本系列欧美系列| 色国产精品一区在线观看| 国产三级精品视频| 亚洲三级理论片| 99久精品国产| 日韩专区在线视频| 亚洲女人的天堂| 久久网这里都是精品| 欧美自拍偷拍一区| 亚洲午夜久久久久中文字幕久| 91同城在线观看| 欧洲一区二区三区在线| 日日欢夜夜爽一区| 亚洲国产美女搞黄色| 久久这里只有精品6| 中文字幕视频一区| 欧美一区二区国产| 日韩av一级电影| 久久99精品久久久| 国产亚洲欧美激情| 丝袜国产日韩另类美女| 成人黄色国产精品网站大全在线免费观看 | 成人av网站免费| 日韩欧美在线观看一区二区三区| 91黄色免费版| 亚洲人亚洲人成电影网站色| 欧美性生交片4|