mirror of https://github.com/AxioDL/amuse.git
15 lines
287 B
C++
15 lines
287 B
C++
|
#ifndef AMUSE_PROJECT_STATISTICS_HPP
|
||
|
#define AMUSE_PROJECT_STATISTICS_HPP
|
||
|
|
||
|
#include <QAbstractTableModel>
|
||
|
|
||
|
class ProjectStatistics : public QAbstractTableModel
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit ProjectStatistics(QObject* parent = Q_NULLPTR);
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif //AMUSE_PROJECT_STATISTICS_HPP
|