This repository has been archived on 2025-12-24. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
yachat/qcm/qt4.qcm
2025-12-25 01:38:25 +05:00

16 lines
286 B
Text

/*
-----BEGIN QCMOD-----
name: Qt >= 4.1
-----END QCMOD-----
*/
class qc_qt4 : public ConfObj
{
public:
qc_qt4(Conf *c) : ConfObj(c) {}
QString name() const { return "Qt >= 4.2.3"; }
QString shortname() const { return "qt4"; }
bool exec()
{
return(QT_VERSION >= 0x040203);
}
};