~ubuntu-branches/ubuntu/vivid/psi/vivid

« back to all changes in this revision

Viewing changes to qcm/tests.qcm

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2008-08-28 18:46:52 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080828184652-iiik12dl91nq7cdi
Tags: 0.12-2
Uploading to unstable (Closes: Bug#494352)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
-----BEGIN QCMOD-----
 
3
name: Tests
 
4
-----END QCMOD-----
 
5
*/
 
6
 
 
7
//----------------------------------------------------------------------------
 
8
// qc_tests
 
9
//----------------------------------------------------------------------------
 
10
class qc_tests : public ConfObj
 
11
{
 
12
public:
 
13
        qc_tests(Conf *c) : ConfObj(c) {}
 
14
        QString name() const { return "tests"; }
 
15
        QString shortname() const { return "tests"; }
 
16
        bool exec()
 
17
        {
 
18
                conf->addExtra("CONFIG += tests");
 
19
                return true;
 
20
        }
 
21
};