qobject_support.h

来自「QT4的utils库源码包.解压后运行./configure配置,然后make.」· C头文件 代码 · 共 21 行

H
21
字号
#ifndef QOBJ_SUPPORT#define QOBJ_SUPPORT#include <QObject>#include <QVariant>#include <QString>#include <QTextStream>/* This version of operator== is used primarily from assertEquals.   It should be made more robust - currently it only checks whether the    properties are the same - it should also do other kinds of checks. */bool  operator==(const QObject& o1, const QObject& o2);QTextStream& operator<<(QTextStream& os, const QVariant & qv) ;QTextStream& operator<<(QTextStream& os, const QObject& qo) ;// QTextStream& operator<<(QTextStream& os, const QString& qs) ;#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?