Files
oak-editor/app/project/projectfilemanagerbase.cpp
T
itsmattkc 16878e3c25 implemented much of the project loading logic
Still not functional, but much of the groundwork is done.
2020-01-13 04:09:06 +11:00

13 lines
177 B
C++

#include "projectfilemanagerbase.h"
ProjectFileManagerBase::ProjectFileManagerBase() :
cancelled_(false)
{
}
void ProjectFileManagerBase::Cancel()
{
cancelled_ = true;
}