Wt examples  4.10.4
Loading...
Searching...
No Matches
main.C File Reference
#include <Wt/WServer.h>
#include <Wt/Dbo/SqlConnectionPool.h>
#include "BlogRSSFeed.h"
#include "model/BlogSession.h"
#include "model/Token.h"
#include "model/User.h"
#include "WtHome.h"
#include "JWtHome.h"

Go to the source code of this file.

Functions

int main (int argc, char **argv)
 

Function Documentation

◆ main()

int main ( int argc,
char ** argv )

Definition at line 19 of file main.C.

20{
21 try {
22 WServer server(argc, argv, WTHTTP_CONFIGURATION);
23
24 BlogSession::configureAuth();
25
26 std::unique_ptr<Dbo::SqlConnectionPool> blogDb
27 = BlogSession::createConnectionPool(server.appRoot() + "blog.db");
28
29 auto rssFeed = std::make_shared<BlogRSSFeed>(*blogDb,
30 "Wt and JWt blog",
31 "http://www.webtoolkit.eu/wt/blog",
32 "We care about our webtoolkits.");
33
34 server.addResource(rssFeed, "/wt/blog/feed/");
35
36 server.addEntryPoint(EntryPointType::Application,
37 std::bind(&createJWtHomeApplication, std::placeholders::_1, blogDb.get()),
38 "/jwt", "/css/jwt/favicon.ico");
39 server.addEntryPoint(EntryPointType::Application,
40 std::bind(&createWtHomeApplication, std::placeholders::_1, blogDb.get()),
41 "", "/css/wt/favicon.ico");
42
43 server.run();
44
45 } catch (Wt::WServer::Exception& e) {
46 std::cerr << e.what() << std::endl;
47 } catch (std::exception &e) {
48 std::cerr << "exception: " << e.what() << std::endl;
49 }
50}
std::unique_ptr< WApplication > createJWtHomeApplication(const WEnvironment &env, Dbo::SqlConnectionPool *blogDb)
Definition JWtHome.C:157
std::unique_ptr< WApplication > createWtHomeApplication(const WEnvironment &env, Dbo::SqlConnectionPool *blogDb)
Definition WtHome.C:172