diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-12-23 15:19:25 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-12-27 17:16:14 +0000 |
commit | d124dec32e1b02e4e936272e00babfaf860443d4 (patch) | |
tree | 92d98b35162f1c63ecfa6dd6977cbd52a33c97bd /icespider/fcgi/main.cpp | |
parent | Be explicit about -z,lazy as default linking is -z,now when hardened profile ... (diff) | |
download | icespider-d124dec32e1b02e4e936272e00babfaf860443d4.tar.bz2 icespider-d124dec32e1b02e4e936272e00babfaf860443d4.tar.xz icespider-d124dec32e1b02e4e936272e00babfaf860443d4.zip |
Refactor to make available some classes for testing
Diffstat (limited to 'icespider/fcgi/main.cpp')
-rw-r--r-- | icespider/fcgi/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/icespider/fcgi/main.cpp b/icespider/fcgi/main.cpp index 4149cb2..7191310 100644 --- a/icespider/fcgi/main.cpp +++ b/icespider/fcgi/main.cpp @@ -1,7 +1,7 @@ #include <visibility.h> #include "fcgiRequest.h" #include "cgiRequest.h" -#include "cgiCore.h" +#include "core.h" using namespace IceSpider; @@ -9,7 +9,7 @@ DLL_PUBLIC int main(int argc, char ** argv, char ** env) { - CgiCore core; + CoreWithDefaultRouter core; if (!FCGX_IsCGI()) { FCGX_Request request; |