2012-07-27 16:58:27 +00:00
|
|
|
#ifndef _FOLDER_H_
|
|
|
|
#define _FOLDER_H_
|
|
|
|
|
|
|
|
#include "FileData.h"
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class SystemData;
|
|
|
|
|
2012-09-07 21:44:07 +00:00
|
|
|
//This class lets us hold a vector of FileDatas within under a common name.
|
2012-07-27 16:58:27 +00:00
|
|
|
class FolderData : public FileData
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
FolderData(SystemData* system, std::string path, std::string name);
|
|
|
|
~FolderData();
|
|
|
|
|
|
|
|
bool isFolder();
|
|
|
|
std::string getName();
|
|
|
|
std::string getPath();
|
|
|
|
|
|
|
|
unsigned int getFileCount();
|
|
|
|
FileData* getFile(unsigned int i);
|
|
|
|
|
|
|
|
void pushFileData(FileData* file);
|
2012-08-02 04:03:15 +00:00
|
|
|
|
|
|
|
void sort();
|
2012-07-27 16:58:27 +00:00
|
|
|
private:
|
|
|
|
SystemData* mSystem;
|
|
|
|
std::string mPath;
|
|
|
|
std::string mName;
|
|
|
|
std::vector<FileData*> mFileVector;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|