mirror of
https://github.com/qbittorrent/qBittorrent
synced 2024-11-17 03:48:39 +01:00
17 lines
287 B
Plaintext
17 lines
287 B
Plaintext
/*
|
|
-----BEGIN QCMOD-----
|
|
name: Qt >= 4.1
|
|
-----END QCMOD-----
|
|
*/
|
|
class qc_qt41 : public ConfObj
|
|
{
|
|
public:
|
|
qc_qt41(Conf *c) : ConfObj(c) {}
|
|
QString name() const { return "Qt >= 4.1"; }
|
|
QString shortname() const { return "qt41"; }
|
|
bool exec()
|
|
{
|
|
return(QT_VERSION >= 0x040100);
|
|
}
|
|
};
|