2006-01-15 20:40:02 +01:00
|
|
|
// src/main.cc - Copyright 2005, 2006, University
|
|
|
|
// of Padova, dept. of Pure and Applied
|
|
|
|
// Mathematics
|
|
|
|
//
|
|
|
|
// This file is part of SGPEMv2.
|
|
|
|
//
|
|
|
|
// This is free software; you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation; either version 2 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// SGPEMv2 is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with SGPEMv2; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
#include "gettext.h"
|
|
|
|
|
2006-01-26 19:31:23 +01:00
|
|
|
#include "main.hh"
|
2006-01-25 18:50:36 +01:00
|
|
|
|
2006-07-04 13:09:45 +02:00
|
|
|
#include "parse_opts.hh"
|
2006-06-23 15:06:39 +02:00
|
|
|
|
2006-02-25 13:21:30 +01:00
|
|
|
#include <glibmm/module.h>
|
2006-07-06 11:49:35 +02:00
|
|
|
#include <glibmm/thread.h>
|
2006-02-15 23:58:18 +01:00
|
|
|
#include <glibmm/ustring.h>
|
2006-02-02 14:46:48 +01:00
|
|
|
|
2006-03-09 11:49:41 +01:00
|
|
|
#include <algorithm>
|
2006-02-25 13:21:30 +01:00
|
|
|
#include <cassert>
|
2006-03-09 11:49:41 +01:00
|
|
|
#include <functional>
|
2006-01-15 20:40:02 +01:00
|
|
|
#include <iostream>
|
2006-01-25 18:50:36 +01:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2006-06-29 10:44:30 +02:00
|
|
|
int
|
|
|
|
main(int argc, char* argv[])
|
2006-01-25 18:50:36 +01:00
|
|
|
{
|
2006-07-04 13:09:45 +02:00
|
|
|
using namespace std;
|
|
|
|
using Glib::ustring;
|
2006-01-25 18:50:36 +01:00
|
|
|
|
2006-01-15 20:40:02 +01:00
|
|
|
// Set up gettext support
|
|
|
|
setlocale(LC_ALL, "");
|
|
|
|
bindtextdomain(PACKAGE, LOCALEDIR);
|
|
|
|
textdomain(PACKAGE);
|
2006-02-25 13:21:30 +01:00
|
|
|
|
2006-02-17 23:19:25 +01:00
|
|
|
// Set up Glib thread support
|
|
|
|
Glib::thread_init();
|
2006-06-29 10:44:30 +02:00
|
|
|
|
|
|
|
// Parses options and prepares vector with
|
2006-01-25 18:50:36 +01:00
|
|
|
// filenames of documents to be opened
|
2006-07-11 00:28:51 +02:00
|
|
|
parse_options(argc, argv);
|
2006-08-09 16:38:45 +02:00
|
|
|
|
2006-07-11 00:28:51 +02:00
|
|
|
return 0;
|
2006-01-15 20:40:02 +01:00
|
|
|
}
|