From 950964130bb72cc6d36b4a935e53ffdbc9571298 Mon Sep 17 00:00:00 2001 From: Anselme Date: Fri, 21 Aug 2015 17:12:20 +0200 Subject: [PATCH] fixed --- app/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/main.cpp b/app/main.cpp index b202162..c2bdd92 100644 --- a/app/main.cpp +++ b/app/main.cpp @@ -5,6 +5,7 @@ #include "regismodule.h" #include "sparrowmodule.h" #include "poilaumodule.h" +#include "fourasmodule.h" class HelloWorldModule : public Module { @@ -34,5 +35,6 @@ int main(int argc, char *argv[]) app.addModule(new RegisModule()); app.addModule(new SparrowModule()); app.addModule(new PoilAuModule()); + app.addModule(new FourasModule()); return app.exec(); }