https://github.com/Kitware/CMake
Raw File
Tip revision: 9703b32c1c75b0b343bb5043030a08a1b1345a20 authored by Brad King on 02 June 2016, 18:56:09 UTC
Merge branch 'FindHDF5-fix-already-found' into release
Tip revision: 9703b32
resourcetester.h

#ifndef RESOURCE_TESTER_H
#define RESOURCE_TESTER_H

#include <QObject>

class ResourceTester : public QObject
{
  Q_OBJECT
public:
  explicit ResourceTester(QObject* parent = 0);

private slots:
  void doTest();
};

#endif
back to top