#include #include #include #include "gettext.h" #include "BakeryGateway/App.hh" int main(int argc, char* argv[]) { bindtextdomain (PACKAGE, PACKAGE_LOCALE_DIR); textdomain (PACKAGE); Gnome::Main mainwin("Bakery Viewer","", argc, argv); BakeryGateway::App * app = manage(new BakeryGateway::App()); app->init(); mainwin.run(); return 0; }