#ifndef ADVENT_DVEREB_FOLDER_H #define ADVENT_DVEREB_FOLDER_H #include "File.h" #include #include class Folder : public File { public: Folder(const std::string &filename); unsigned long Size() const override; void AddFile(const std::string &filename, unsigned long size); void AddFolder(const std::string &name); const std::vector& Files() const; private: std::vector files; }; #endif