1#ifndef INCLUDE_COMMON_BASEPROJECT_H_
2#define INCLUDE_COMMON_BASEPROJECT_H_
25 [[nodiscard]]
virtual const std::string &
getName() = 0;
40 static std::vector<std::unique_ptr<BaseProject>>
getProjects();
50 static std::vector<std::unique_ptr<BaseProject>>
56extern std::vector<std::unique_ptr<Common::BaseProject>>
Projects;
std::vector< std::unique_ptr< Common::BaseProject > > Projects
Definition BaseProject.cpp:3
Structure representing an project application instance.
Definition BaseProject.h:16
virtual const std::string & getName()=0
static bool hasUI
Definition BaseProject.h:26
virtual ~BaseProject()=default
Definition BaseProject.h:30
virtual ~ImGuiUI()=default
Definition BaseProject.h:37
static std::vector< std::unique_ptr< BaseProject > > getProjects()
returns the projects vector
Definition BaseProject.cpp:12
static void registerProject(std::unique_ptr< BaseProject > project)
register a project to the vector, should be called before calling getProjects()
Definition BaseProject.cpp:17
static std::vector< std::unique_ptr< BaseProject > > projects
A vector that holds the projects.
Definition BaseProject.h:51
static void registerAllProjects()
registers all the projects to the vector, should be called before calling getProjects()
Definition RegisterProjects.cpp:9