Implemented project manager, app data, welcome window
This commit is contained in:
@ -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();
|
||||
|
@ -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
|
||||
|
Reference in New Issue
Block a user