Wt examples 3.1.10
Functions
/build/buildd/witty-3.1.10/examples/wt-homepage/main.C File Reference
#include <Wt/WServer>
#include "BlogRSSFeed.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 13 of file main.C.

{
  try {
    WServer server(argv[0]);

    server.setServerConfiguration(argc, argv, WTHTTP_CONFIGURATION);

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

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

    server.addEntryPoint(Application, createJWtHomeApplication,
      "/jwt", "/css/jwt/favicon.ico");
    server.addEntryPoint(Application, createWtHomeApplication,
      "", "/css/wt/favicon.ico");

    if (server.start()) {
      WServer::waitForShutdown();
      server.stop();
    }
  } catch (Wt::WServer::Exception& e) {
    std::cerr << e.what() << std::endl;
  } catch (std::exception &e) {
    std::cerr << "exception: " << e.what() << std::endl;
  }
}

Generated on Sat Dec 24 2011 for the C++ Web Toolkit (Wt) by doxygen 1.7.4