Functions

/home/koen/project/wt/public-git/wt/examples/hangman/hangman.C File Reference

#include <Wt/WApplication>
#include "HangmanGame.h"

Go to the source code of this file.

Functions

Wt::WApplicationcreateApplication (const Wt::WEnvironment &env)
int main (int argc, char **argv)

Function Documentation

Wt::WApplication* createApplication ( const Wt::WEnvironment env )

Definition at line 11 of file hangman.C.

{
  Wt::WApplication *app = new Wt::WApplication(env);
  
  app->setTitle("Hangman");

  app->messageResourceBundle().use(app->appRoot() + "strings");
  app->messageResourceBundle().use(app->appRoot() + "templates");

  app->useStyleSheet("style/hangman.css");

  new HangmanGame(app->root());

  return app;
}
int main ( int  argc,
char **  argv 
)

Definition at line 28 of file hangman.C.

{
  return WRun(argc, argv, &createApplication);
}

Generated on Fri Sep 23 2011 for the C++ Web Toolkit (Wt) by doxygen 1.7.2