diff options
| author | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2015-03-11 20:06:26 +0400 |
|---|---|---|
| committer | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2015-03-11 20:06:26 +0400 |
| commit | 8a14c386555b5b9ccd8d850713bd7732cdeb3fa3 (patch) | |
| tree | d350962377ff5b70939f40ff200da4e87c6663e6 /ParserClass/AbstractIDManager.cpp | |
| parent | 41897f295fbaf4d715a6fc099c81d4e15b48e19b (diff) | |
Rename for better understanding
Diffstat (limited to 'ParserClass/AbstractIDManager.cpp')
| -rw-r--r-- | ParserClass/AbstractIDManager.cpp | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/ParserClass/AbstractIDManager.cpp b/ParserClass/AbstractIDManager.cpp new file mode 100644 index 0000000..370fc06 --- /dev/null +++ b/ParserClass/AbstractIDManager.cpp @@ -0,0 +1,39 @@ +/** + * @file AbstractFileContainer.hpp + * @brief FileManContainer class definitions + * @author manzerbredes + * @date 11 Mars 2015 + * + * Contain all definitions of FileManContainer class. + * + */ + +#ifndef __FileManContainer__ +#define __FileManContainer__ + + + +/** + * @class Website Website.hpp "/ParserClass/FileManContainer/Website.hpp" + * @brief Class for manager all FileMan container (websites etc...) + * @author manzerbredes + * + * + * + */ + +class FileManContainer{ + + public: + FileManContainer(); + + void addWebsite(Website website); + std::vector<Website> getWebsites(); + + private: + + std::vector<Website> websites; +}; + + +#endif |
