main.cpp 582 B

1234567891011121314151617181920212223
  1. /* SLiM - Simple Login Manager
  2. Copyright (C) 1997, 1998 Per Liden
  3. Copyright (C) 2004-06 Simone Rota <sip@varlock.com>
  4. Copyright (C) 2004-06 Johannes Winkelmann <jw@tks6.net>
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2 of the License, or
  8. (at your option) any later version.
  9. */
  10. #include "app.h"
  11. #include "const.h"
  12. App* LoginApp = 0;
  13. int main(int argc, char** argv)
  14. {
  15. LoginApp = new App(argc, argv);
  16. LoginApp->Run();
  17. return 0;
  18. }