Guest User

Untitled

a guest
Feb 20th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #ifdef HAVE_CONFIG_H
  2. #include <config.h>
  3. #endif
  4. #include "myapp.h"
  5.  
  6. int main(int argc, char *argv[]) {
  7. SessionConfig::setSessPath("/tmp/cgi++/session/");
  8. myApp app;
  9. app.setRoute("/test", CALLBACK(&myApp::subTest));
  10. return app.exec();
  11. }
Add Comment
Please, Sign In to add comment