Wt examples  3.3.5
Functions
/usr/src/RPM/BUILD/wt-3.3.5-rc2/examples/wt-homepage/main.C File Reference
#include <Wt/WServer>
#include <Wt/Dbo/SqlConnectionPool>
#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

int main ( int  argc,
char **  argv 
)

Definition at line 17 of file main.C.

{
  try {
    WServer server(argc, argv, WTHTTP_CONFIGURATION);

    BlogSession::configureAuth();

    Wt::Dbo::SqlConnectionPool *blogDb
      = BlogSession::createConnectionPool(server.appRoot() + "blog.db");

    BlogRSSFeed rssFeed(*blogDb, "Wt and JWt blog",
                        "http://www.webtoolkit.eu/wt/blog",
                        "We care about our webtoolkits.");

    server.addResource(&rssFeed, "/wt/blog/feed/");

    server.addEntryPoint(Application,
                         boost::bind(&createJWtHomeApplication, _1, blogDb),
                         "/jwt", "/css/jwt/favicon.ico");
    server.addEntryPoint(Application,
                         boost::bind(&createWtHomeApplication, _1, blogDb),
                         "", "/css/wt/favicon.ico");

    server.run();

    delete blogDb;
  } catch (Wt::WServer::Exception& e) {
    std::cerr << e.what() << std::endl;
  } catch (std::exception &e) {
    std::cerr << "exception: " << e.what() << std::endl;
  }
}

Generated on Tue Mar 22 2016 for the C++ Web Toolkit (Wt) by doxygen 1.7.6.1