mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-12-27 08:19:30 +08:00
17 lines
287 B
Plaintext
17 lines
287 B
Plaintext
|
/*
|
||
|
-----BEGIN QCMOD-----
|
||
|
name: Qt >= 4.2
|
||
|
-----END QCMOD-----
|
||
|
*/
|
||
|
class qc_qt42 : public ConfObj
|
||
|
{
|
||
|
public:
|
||
|
qc_qt42(Conf *c) : ConfObj(c) {}
|
||
|
QString name() const { return "Qt >= 4.2"; }
|
||
|
QString shortname() const { return "qt42"; }
|
||
|
bool exec()
|
||
|
{
|
||
|
return(QT_VERSION >= 0x040200);
|
||
|
}
|
||
|
};
|