fleshed out footage class

This commit is contained in:
itsmattkc
2019-06-22 22:57:01 -07:00
parent 75081f76c9
commit 771a250a81
18 changed files with 788 additions and 7 deletions
+11
View File
@@ -0,0 +1,11 @@
#include "folder.h"
Folder::Folder()
{
}
Item::Type Folder::type() const
{
return kFolder;
}