openbox/src/main.cc

32 lines
564 B
C++

// -*- mode: C++; indent-tabs-mode: nil; -*-
/*! @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
#include "gettext.h"
}
#include <string>
using std::string;
#include "openbox.hh"
int main(int argc, char **argv) {
// initialize the locale
setlocale(LC_ALL, "");
bindtextdomain(PACKAGE, LOCALEDIR);
textdomain(PACKAGE);
ob::Openbox openbox(argc, argv);
openbox.eventLoop();
}