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

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

?? qdatetime.h

?? QT 開發環境里面一個很重要的文件
?? H
字號:
/******************************************************************************** Copyright (C) 1992-2006 Trolltech ASA. All rights reserved.**** This file is part of the QtCore module of the Qt Toolkit.**** This file may be used under the terms of the GNU General Public** License version 2.0 as published by the Free Software Foundation** and appearing in the file LICENSE.GPL included in the packaging of** this file.  Please review the following information to ensure GNU** General Public Licensing requirements will be met:** http://www.trolltech.com/products/qt/opensource.html**** If you are unsure which license is appropriate for your use, please** review the following information:** http://www.trolltech.com/products/qt/licensing.html or contact the** sales department at sales@trolltech.com.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************/#ifndef QDATETIME_H#define QDATETIME_H#include <QtCore/qstring.h>#include <QtCore/qnamespace.h>QT_BEGIN_HEADERQT_MODULE(Core)class Q_CORE_EXPORT QDate{public:    QDate() { jd = 0; }    QDate(int y, int m, int d);    bool isNull() const { return jd == 0; }    bool isValid() const;    int year() const;    int month() const;    int day() const;    int dayOfWeek() const;    int dayOfYear() const;    int daysInMonth() const;    int daysInYear() const;    int weekNumber(int *yearNum = 0) const;#ifndef QT_NO_TEXTDATE#ifdef QT3_SUPPORT    static QT3_SUPPORT QString monthName(int month) { return shortMonthName(month); }    static QT3_SUPPORT QString dayName(int weekday) { return shortDayName(weekday); }#endif    static QString shortMonthName(int month);    static QString shortDayName(int weekday);    static QString longMonthName(int month);    static QString longDayName(int weekday);#endif // QT_NO_TEXTDATE#ifndef QT_NO_DATESTRING    QString toString(Qt::DateFormat f = Qt::TextDate) const;    QString toString(const QString &format) const;#endif    bool setYMD(int y, int m, int d);    bool setDate(int year, int month, int date);    QDate addDays(int days) const;    QDate addMonths(int months) const;    QDate addYears(int years) const;    int daysTo(const QDate &) const;    bool operator==(const QDate &other) const { return jd == other.jd; }    bool operator!=(const QDate &other) const { return jd != other.jd; }    bool operator<(const QDate &other) const { return jd < other.jd; }    bool operator<=(const QDate &other) const { return jd <= other.jd; }    bool operator>(const QDate &other) const { return jd > other.jd; }    bool operator>=(const QDate &other) const { return jd >= other.jd; }    static QDate currentDate();#ifndef QT_NO_DATESTRING    static QDate fromString(const QString &s, Qt::DateFormat f = Qt::TextDate);    static QDate fromString(const QString &s, const QString &format);#endif    static bool isValid(int y, int m, int d);    static bool isLeapYear(int year);#ifdef QT3_SUPPORT    inline static QT3_SUPPORT bool leapYear(int year) { return isLeapYear(year); }#endif    // ### Qt 5: remove these two functions    static uint gregorianToJulian(int y, int m, int d);    static void julianToGregorian(uint jd, int &y, int &m, int &d);#ifdef QT3_SUPPORT    static QT3_SUPPORT QDate currentDate(Qt::TimeSpec spec);#endif    static inline QDate fromJulianDay(int jd) { QDate d; d.jd = jd; return d; }    inline int toJulianDay() const { return jd; }private:    uint jd;    friend class QDateTime;    friend class QDateTimePrivate;#ifndef QT_NO_DATASTREAM    friend Q_CORE_EXPORT QDataStream &operator<<(QDataStream &, const QDate &);    friend Q_CORE_EXPORT QDataStream &operator>>(QDataStream &, QDate &);#endif};Q_DECLARE_TYPEINFO(QDate, Q_MOVABLE_TYPE);class Q_CORE_EXPORT QTime{public:    QTime(): mds(NullTime) {}    QTime(int h, int m, int s = 0, int ms = 0);    bool isNull() const { return mds == NullTime; }    bool isValid() const;    int hour() const;    int minute() const;    int second() const;    int msec() const;#ifndef QT_NO_DATESTRING    QString toString(Qt::DateFormat f = Qt::TextDate) const;    QString toString(const QString &format) const;#endif    bool setHMS(int h, int m, int s, int ms = 0);    QTime addSecs(int secs) const;    int secsTo(const QTime &) const;    QTime addMSecs(int ms) const;    int msecsTo(const QTime &) const;    bool operator==(const QTime &other) const { return mds == other.mds; }    bool operator!=(const QTime &other) const { return mds != other.mds; }    bool operator<(const QTime &other) const { return mds < other.mds; }    bool operator<=(const QTime &other) const { return mds <= other.mds; }    bool operator>(const QTime &other) const { return mds > other.mds; }    bool operator>=(const QTime &other) const { return mds >= other.mds; }    static QTime currentTime();#ifndef QT_NO_DATESTRING    static QTime fromString(const QString &s, Qt::DateFormat f = Qt::TextDate);#endif    static QTime fromString(const QString &s, const QString &format);    static bool isValid(int h, int m, int s, int ms = 0);#ifdef QT3_SUPPORT    static QT3_SUPPORT QTime currentTime(Qt::TimeSpec spec);#endif    void start();    int restart();    int elapsed() const;private:    enum TimeFlag { NullTime = -1 };    inline int ds() const { return mds == -1 ? 0 : mds; }    int mds;    friend class QDateTime;    friend class QDateTimePrivate;#ifndef QT_NO_DATASTREAM    friend Q_CORE_EXPORT QDataStream &operator<<(QDataStream &, const QTime &);    friend Q_CORE_EXPORT QDataStream &operator>>(QDataStream &, QTime &);#endif};Q_DECLARE_TYPEINFO(QTime, Q_MOVABLE_TYPE);class QDateTimePrivate;class Q_CORE_EXPORT QDateTime{public:    QDateTime();    explicit QDateTime(const QDate &);    QDateTime(const QDate &, const QTime &, Qt::TimeSpec spec = Qt::LocalTime);    QDateTime(const QDateTime &other);    ~QDateTime();    QDateTime &operator=(const QDateTime &other);    bool isNull() const;    bool isValid() const;    QDate date() const;    QTime time() const;    Qt::TimeSpec timeSpec() const;    uint toTime_t() const;    void setDate(const QDate &date);    void setTime(const QTime &time);    void setTimeSpec(Qt::TimeSpec spec);    void setTime_t(uint secsSince1Jan1970UTC);#ifndef QT_NO_DATESTRING    QString toString(Qt::DateFormat f = Qt::TextDate) const;    QString toString(const QString &format) const;#endif    QDateTime addDays(int days) const;    QDateTime addMonths(int months) const;    QDateTime addYears(int years) const;    QDateTime addSecs(int secs) const;    QDateTime addMSecs(qint64 msecs) const;    QDateTime toTimeSpec(Qt::TimeSpec spec) const;    inline QDateTime toLocalTime() const { return toTimeSpec(Qt::LocalTime); }    inline QDateTime toUTC() const { return toTimeSpec(Qt::UTC); }    int daysTo(const QDateTime &) const;    int secsTo(const QDateTime &) const;    bool operator==(const QDateTime &other) const;    inline bool operator!=(const QDateTime &other) const { return !(*this == other); }    bool operator<(const QDateTime &other) const;    inline bool operator<=(const QDateTime &other) const { return !(other < *this); }    inline bool operator>(const QDateTime &other) const { return other < *this; }    inline bool operator>=(const QDateTime &other) const { return !(*this < other); }    static QDateTime currentDateTime();#ifndef QT_NO_DATESTRING    static QDateTime fromString(const QString &s, Qt::DateFormat f = Qt::TextDate);#endif    static QDateTime fromString(const QString &s, const QString &format);    static QDateTime fromTime_t(uint secsSince1Jan1970UTC);#ifdef QT3_SUPPORT    inline QT3_SUPPORT void setTime_t(uint secsSince1Jan1970UTC, Qt::TimeSpec spec) {        setTime_t(secsSince1Jan1970UTC);        if (spec == Qt::UTC)            *this = toUTC();    }    static inline QT3_SUPPORT QDateTime currentDateTime(Qt::TimeSpec spec) {        if (spec == Qt::LocalTime)            return currentDateTime();        else            return currentDateTime().toUTC();    }#endifprivate:    friend class QDateTimePrivate;    void detach();    QDateTimePrivate *d;#ifndef QT_NO_DATASTREAM    friend Q_CORE_EXPORT QDataStream &operator<<(QDataStream &, const QDateTime &);    friend Q_CORE_EXPORT QDataStream &operator>>(QDataStream &, QDateTime &);#endif};Q_DECLARE_TYPEINFO(QDateTime, Q_MOVABLE_TYPE);#ifdef QT3_SUPPORTinline QDate QDate::currentDate(Qt::TimeSpec spec){    if (spec == Qt::LocalTime)        return currentDate();    else        return QDateTime::currentDateTime().toUTC().date();}inline QTime QTime::currentTime(Qt::TimeSpec spec){    if (spec == Qt::LocalTime)        return currentTime();    else        return QDateTime::currentDateTime().toUTC().time();}#endif#ifndef QT_NO_DATASTREAMQ_CORE_EXPORT QDataStream &operator<<(QDataStream &, const QDate &);Q_CORE_EXPORT QDataStream &operator>>(QDataStream &, QDate &);Q_CORE_EXPORT QDataStream &operator<<(QDataStream &, const QTime &);Q_CORE_EXPORT QDataStream &operator>>(QDataStream &, QTime &);Q_CORE_EXPORT QDataStream &operator<<(QDataStream &, const QDateTime &);Q_CORE_EXPORT QDataStream &operator>>(QDataStream &, QDateTime &);#endif // QT_NO_DATASTREAM#if !defined(QT_NO_DEBUG_STREAM) && !defined(QT_NO_DATESTRING)Q_CORE_EXPORT QDebug operator<<(QDebug, const QDate &);Q_CORE_EXPORT QDebug operator<<(QDebug, const QTime &);Q_CORE_EXPORT QDebug operator<<(QDebug, const QDateTime &);#endifQT_END_HEADER#endif // QDATETIME_H

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美性猛片aaaaaaa做受| 99久久婷婷国产| 欧美一二三区精品| 久久成人麻豆午夜电影| 国产日韩欧美一区二区三区乱码 | 日本精品一级二级| 蜜桃视频在线观看一区二区| 国产精品欧美一级免费| 欧美日韩日本视频| 国产成人av影院| 亚洲成a人在线观看| 国产婷婷精品av在线| 欧美日韩aaaaa| 色综合天天综合在线视频| 毛片av一区二区三区| 日韩1区2区3区| 一区二区在线观看视频| 国产日韩精品一区二区三区| 国产日韩综合av| 国产精品国产三级国产普通话蜜臀 | 久久婷婷国产综合精品青草| 欧美三级视频在线观看| 欧美日本一道本| 日韩精品在线网站| 欧美精品tushy高清| 99国产麻豆精品| 欧美精品久久久久久久久老牛影院| 91精品国产色综合久久ai换脸| 99视频一区二区| 国产精品资源站在线| 久久丁香综合五月国产三级网站| 懂色中文一区二区在线播放| 久久超碰97中文字幕| 丰满白嫩尤物一区二区| 欧美日韩一区二区在线观看视频| 日韩网站在线看片你懂的| 中文乱码免费一区二区| 亚洲自拍偷拍av| 亚洲一二三专区| 国产精品中文有码| 欧美日韩小视频| 欧美激情一区在线观看| 国产欧美日韩另类视频免费观看| 尤物av一区二区| 风流少妇一区二区| 日韩一区二区三区视频在线观看 | 国产精品18久久久| 欧美一区二区在线看| 亚洲欧美综合色| 亚洲免费电影在线| 天天综合天天综合色| 日本亚洲视频在线| 一本大道久久a久久综合婷婷| www.亚洲激情.com| 欧美精品一区二区在线播放| 久久嫩草精品久久久久| 国产日韩欧美高清| 久久99精品国产91久久来源| 成人污污视频在线观看| 一本在线高清不卡dvd| 久久久精品黄色| 精品在线免费观看| 制服丝袜亚洲网站| 欧美激情一区二区三区不卡| 麻豆精品一区二区av白丝在线| 在线一区二区三区四区五区| 国产欧美一区二区精品忘忧草| 热久久国产精品| 成人国产精品视频| 91精品国产综合久久小美女| ...av二区三区久久精品| 国产成人精品免费在线| www成人在线观看| 精品中文字幕一区二区小辣椒| 欧美日韩精品一区二区三区蜜桃| 亚洲自拍另类综合| 欧美唯美清纯偷拍| 亚洲成人激情自拍| 欧美日韩美女一区二区| 亚洲sss视频在线视频| 在线看国产日韩| 2020国产精品自拍| 激情五月婷婷综合网| 欧美日精品一区视频| 亚洲自拍偷拍综合| 91精品国产综合久久福利软件| 日韩影院精彩在线| 91社区在线播放| 久久九九久精品国产免费直播| 国产精品影视在线| 日韩码欧中文字| 成人h精品动漫一区二区三区| 国产日韩欧美a| 色视频成人在线观看免| 天堂久久久久va久久久久| 日韩一区二区中文字幕| 国产九色精品成人porny| 国产精品三级视频| 在线免费不卡视频| 国内一区二区在线| 中文字幕中文字幕一区| 欧美体内she精高潮| 男女性色大片免费观看一区二区 | 欧美国产成人在线| 色婷婷狠狠综合| 玖玖九九国产精品| 亚洲另类在线一区| 欧美一区二区久久| 99久久久久久| 麻豆精品视频在线观看视频| 国产精品久久网站| 欧美成人aa大片| 蜜桃一区二区三区四区| 中文字幕中文字幕在线一区 | 国产欧美一区二区三区鸳鸯浴| 色综合欧美在线| 久久99热狠狠色一区二区| 亚洲三级视频在线观看| 2021中文字幕一区亚洲| 在线观看免费一区| 丁香婷婷综合激情五月色| 天堂久久一区二区三区| 亚洲三级在线观看| 国产欧美日韩中文久久| 欧美久久久久免费| 91丝袜美腿高跟国产极品老师 | 中文字幕不卡在线观看| 欧美久久高跟鞋激| 色婷婷综合久久久久中文| 国产精品一区二区91| 日韩国产在线一| 一区av在线播放| 欧美电影在线免费观看| aa级大片欧美| 国产精品一区二区视频| 日本午夜精品一区二区三区电影| 亚洲日本丝袜连裤袜办公室| 久久久99精品免费观看| 日韩欧美国产系列| 欧美精品丝袜久久久中文字幕| 色999日韩国产欧美一区二区| 国产精品一区免费视频| 精品一区二区免费| 久久精品999| 久久黄色级2电影| 日韩高清国产一区在线| 日韩 欧美一区二区三区| 午夜电影网一区| 天天色图综合网| 五月婷婷色综合| 午夜精品久久一牛影视| 亚洲bt欧美bt精品| 亚洲成人tv网| 奇米777欧美一区二区| 美女高潮久久久| 国产麻豆视频一区| 亚洲大片免费看| 五月婷婷激情综合| 午夜久久久久久| 欧美96一区二区免费视频| 极品销魂美女一区二区三区| 日产国产高清一区二区三区| 日韩av电影天堂| 国产精品资源在线| 成人av在线影院| 欧美性大战久久久| 91麻豆精品国产91久久久久久| 日韩女优毛片在线| 国产日韩欧美高清| 亚洲蜜臀av乱码久久精品| 亚洲成年人影院| 国产剧情一区二区三区| 97se狠狠狠综合亚洲狠狠| 色婷婷综合久久久久中文一区二区| 精品视频1区2区3区| 精品欧美久久久| 欧美激情一区二区三区全黄| 一区二区三区日韩精品| 麻豆精品一区二区三区| 从欧美一区二区三区| 欧美午夜一区二区| 日韩精品中午字幕| 国产精品久久久久久久久果冻传媒 | 亚洲欧洲www| 麻豆精品视频在线观看免费| 成人app在线| 日韩一级免费一区| 亚洲人成在线观看一区二区| 免费一区二区视频| 99精品国产热久久91蜜凸| 欧美一区二区三区免费大片| 国产精品嫩草久久久久| 中文字幕综合网| 老司机精品视频导航| 成人ar影院免费观看视频| 欧美一区二区三区影视| 亚洲男人的天堂网| 黑人精品欧美一区二区蜜桃| 在线视频你懂得一区| 久久精品欧美日韩精品|