Initial Commit

This commit is contained in:
Grant Terris
2019-11-09 15:02:46 -08:00
commit c49c8f6e33
16 changed files with 573 additions and 0 deletions

18
ImageManager.hpp Normal file
View File

@@ -0,0 +1,18 @@
#ifndef IMAGE_MANAGER_H
#define IMAGE_MANAGER_H
#include <QObject>
class ImageManager: public QObject
{
Q_OBJECT;
public:
ImageManager(QObject *parent);
virtual ~ImageManager();
};
#endif