mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-25 02:36:10 +03:00
16 lines
287 B
Text
16 lines
287 B
Text
/*
|
|
-----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);
|
|
}
|
|
};
|