Work on amuse GUI, use C++ linking for audio decoders

This commit is contained in:
Jack Andersen
2018-07-09 11:05:31 -07:00
parent 1e8ce19b16
commit cdc720b8a7
46 changed files with 1822 additions and 56 deletions

14
Editor/ProjectModel.hpp Normal file
View File

@@ -0,0 +1,14 @@
#ifndef AMUSE_PROJECT_MODEL_HPP
#define AMUSE_PROJECT_MODEL_HPP
#include <QAbstractItemModel>
class ProjectModel : public QAbstractItemModel
{
Q_OBJECT
public:
explicit ProjectModel(QObject* parent = Q_NULLPTR);
};
#endif //AMUSE_PROJECT_MODEL_HPP