File: qt41.qcm

package info (click to toggle)
qconf 2.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 516 kB
  • sloc: cpp: 2,692; ansic: 1,178; makefile: 16; sh: 11
file content (22 lines) | stat: -rw-r--r-- 486 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
Copyright (C) 2004-2008  Justin Karneges

This file is free software; unlimited permission is given to copy and/or
distribute it, with or without modifications, as long as this notice is
preserved.

-----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);
	}
};