~ubuntu-branches/ubuntu/trusty/grantlee/trusty

« back to all changes in this revision

Viewing changes to textdocument/tests/coverageobject.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-08 22:46:54 UTC
  • mfrom: (1.1.4)
  • Revision ID: package-import@ubuntu.com-20111208224654-n2vxap05cxp0i2v7
Tags: 0.2.0-0ubuntu1
* New upstream release
* Merge with Debian, remaining changes:
 - conflict/replace old libgrantlee0
* Remove missing symbols from .symbols files, upstream says they are no longer
  all virtual but they are inline

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _TEST_COVERAGE_OBJECT_H
 
2
#define _TEST_COVERAGE_OBJECT_H
 
3
#include <QObject>
 
4
class CoverageObject : public QObject
 
5
{
 
6
  Q_OBJECT
 
7
  public:
 
8
    CoverageObject(QObject *p=NULL) : QObject(p) {}
 
9
    virtual void initTest() {}
 
10
    virtual void cleanupTest() {}
 
11
  protected Q_SLOTS:
 
12
    void init() ;
 
13
    void cleanup();
 
14
};
 
15
#endif