Files
oak-editor/app/project/projectsavemanager.h
T
itsmattkc 653709dc84 try to index media immediately on import
Since indexing is supplemental, it can be made a background task that can occur
at more or less any time. So we run it as soon as possible.
2020-01-17 03:58:29 +11:00

22 lines
325 B
C++

#ifndef PROJECTSAVEMANAGER_H
#define PROJECTSAVEMANAGER_H
#include "project/project.h"
#include "task/task.h"
class ProjectSaveManager : public Task
{
Q_OBJECT
public:
ProjectSaveManager(Project* project);
protected:
virtual void Action() override;
private:
Project* project_;
};
#endif // PROJECTSAVEMANAGER_H