Implemented project manager, app data, welcome window

This commit is contained in:
2018-08-07 17:51:29 +03:00
parent 49a4a17407
commit 7e355c1981
15 changed files with 561 additions and 27 deletions

View File

@ -19,6 +19,11 @@ ProjectItem::ProjectItem(boost::filesystem::path path, ProjectItem* parent, Proj
{
}
ProjectItem::~ProjectItem()
{
}
std::string ProjectItem::name() const
{
return m_path.filename().string();

View File

@ -33,6 +33,11 @@ public:
*/
ProjectItem(boost::filesystem::path path, ProjectItem* parent, Project* project);
/**
* @brief Destructor
*/
virtual ~ProjectItem();
// Getters
/**
* @brief Gets the name of the item