Replaced cmake with scons
[biaweb2.git] / biaweb.cpp
index f720fe0..d0c284e 100644 (file)
@@ -1,5 +1,6 @@
 #include <iostream>
 #include <fstream>
+#include <getopt.h>
 #include "biawebdocumenttree.hpp"
 using namespace biaweb;
 
@@ -10,6 +11,7 @@ int main (int argc, char *argv[]) {
     // An empty document tree
     std::unique_ptr<DocumentTree> tree (new DocumentTree ("")); 
     tree.get()->document_tree_builder ("Test/Reviews");
+    std::cout << VISUALIZE_TREE << std::endl;
     tree.get()->visualize_tree ();
     Template tpl ("templates");
     tree.get()->create_tree_html (&tpl, "Test/Out");