]> git.llucax.com Git - software/bife/bife++.git/blobdiff - main.cpp
Cleaned up the code:
[software/bife/bife++.git] / main.cpp
index 5a4351dbb283486829a0f0fbb40d320e36d34691..92fbb6a5e20fb1d7a170df118222dad498c23f4d 100644 (file)
--- a/main.cpp
+++ b/main.cpp
@@ -7,6 +7,8 @@
 #include "ghit.h"
 #include "chit.h"
 
+using namespace std;
+
 int main(void) {
     const string indent = "    ";
     Hash vars;
@@ -22,7 +24,7 @@ int main(void) {
     cout << "=============" << endl;
     vars["NOMBRE"] = "Pedro";
     vars["EDAD"]   = "26";
-    GHIT g;
+    GHIT g("./././");
     cout << "We are using the default group: '" << g.getGroup() << "'." << endl;
     cout << indent << g.parse("test", vars) << endl;
     g.pushGroup("tpldir");
@@ -35,7 +37,7 @@ int main(void) {
 
     cout << "CHIT example:" << endl;
     cout << "=============" << endl;
-    CHIT c;
+    CHIT c("././././././", ".tpl.html");
     const int n = 65;
     for (int i = n; i < (n+10); i++) {
         stringstream ssi, ssc;