-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFolder.cpp
48 lines (39 loc) · 864 Bytes
/
Folder.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
//
//
// @ Project : FileSystem
// @ File Name : Folder.cpp
// @ Date : 9/16/2014
// @ Author : Stefan Djordjevic
//
//
#include "../Header Files/Folder.h"
#include "../Header Files/FilesystemVisitor.h"
#include "../Header Files/FilesystemObject.h"
#include <vector>
#include <string>
using namespace std;
Folder::Folder(string name):FilesystemObject(name)
{
containedObjects = new vector<FilesystemObject *>();
}
Folder::~Folder()
{
/*for(vector<FilesystemObject *>::iterator it = containedObjects->begin();
it != containedObjects->end(); it++)
{
delete (*it);
}*/
delete containedObjects;
}
void Folder::accept(FilesystemVisitor &v)
{
v.visitFolder(*this);
}
void Folder::addFilesystemObject(FilesystemObject *o)
{
containedObjects->push_back(o);
}
vector<FilesystemObject *>& Folder::getContainedObjects()
{
return *containedObjects;
}