openbox/src/main.cc
2003-01-13 02:42:14 +00:00

35 lines
717 B
C++

// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
/*! @file main.cc
@brief Main entry point for the application
*/
#ifdef HAVE_CONFIG_H
# include "../config.h"
#endif // HAVE_CONFIG_H
extern "C" {
#ifdef HAVE_LOCALE_H
# include <locale.h>
#endif // HAVE_LOCALE_H
#ifdef HAVE_STDIO_H
# include <stdio.h>
#endif // HAVE_STDIO_H
#include "gettext.h"
}
#include "openbox.hh"
int main(int argc, char **argv) {
// initialize the locale
if (!setlocale(LC_ALL, ""))
printf("Couldn't set locale from environment.\n");
bindtextdomain(PACKAGE, LOCALEDIR);
bind_textdomain_codeset(PACKAGE, "UTF-8");
textdomain(PACKAGE);
ob::Openbox openbox(argc, argv);
openbox.eventLoop();
}