aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/main.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index ebfb745..132fb18 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1,8 +1,11 @@
1#include "builder.h" 1#include "builder.h"
2#include "viewerplain.h"
3#include "viewerpercent.h"
2 4
3int main( int argc, char *argv[] ) 5int main( int argc, char *argv[] )
4{ 6{
5 Builder bld; 7 ViewerPercent p;
8 Builder bld( p );
6 9
7 bld.load("build.conf"); 10 bld.load("build.conf");
8 11