summaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authormanzerbredes <loic.guegan_secondary@yahoo.fr>2015-03-21 07:08:34 +0100
committermanzerbredes <loic.guegan_secondary@yahoo.fr>2015-03-21 07:08:34 +0100
commit3a10207bf5ddf14c478623b6e32ff72af6379a48 (patch)
tree8506da971d0661fc074b0b79a56fe705273d1c32 /main.cpp
parent77affb6d5564f691ea337a3971fdc85f2460ed92 (diff)
parent697d44fd357779309bb0c1931f589a92bb88a642 (diff)
Merge branch 'PARSER'
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp68
1 files changed, 0 insertions, 68 deletions
diff --git a/main.cpp b/main.cpp
deleted file mode 100644
index c392103..0000000
--- a/main.cpp
+++ /dev/null
@@ -1,68 +0,0 @@
-/**
- * @file main.cpp
- * @brief Entry point
- * @author manzerbredes
- * @version Prototype
- * @date 8 Mars 2015
- *
- * Entry point of the application.
- *
- */
-
-
-
-
-//----- std -----
-
-#include <iostream>
-#include <string>
-#include <vector>
-
-
-//----- class -----
-#include "FileManIOFile.hpp"
-#include "FileManParser.hpp"
-#include "Website.hpp"
-
-
-
-
-
-/**
- * @fn int main(int argc, char *argv[])
- * @author manzerbredes
- * @brief main function
- * @param argc contain *argv[] length
- * @param *argv[] contain the arguments list
- * @return Return code, an int.
- */
-int main(int argc, char *argv[]){
-
-
- //TEST PARSER FAKE ARGUMENT
- FileManParser xmlParser("");
-
- std::vector<Website> *siteWeb=xmlParser.getWebsites();
-
- siteWeb->erase(siteWeb->begin()+1);
-
- xmlParser.updateParser();
-
-
- //Save modification in file
-
- FileManIOFile save("Doxygen/bob.bin");
-
- save.write("loic", xmlParser.getDocument());
-
- //Print
- std::cout << xmlParser.getDocument();
-
-
-
-
- return 0;
-}
-
-
-