- Change filenames to follow a consistent naming scheme

git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@307 3ecf2c5c-341e-0410-92b4-d18e462d057c
This commit is contained in:
tchernobog 2006-02-09 19:43:24 +00:00
parent 68a0cef9d9
commit 87558b5c26
20 changed files with 33 additions and 33 deletions

View File

@ -48,17 +48,17 @@ sgpemv2_LDADD = -lbackend -lpyloader \
# Please keep this in sorted order:
sgpemv2_SOURCES = \
graphicalterminalio.cc \
graphical_terminal_io.cc \
main.cc \
mainwindow.cc \
parseopts.cc \
startgui.cc
main_window.cc \
parse_opts.cc \
start_gui.cc
noinst_HEADERS = \
iomanager.hh \
io_manager.hh \
main.hh \
mainwindow.hh \
main_window.hh \
observer.hh \
startgui.hh \
graphicalterminalio.hh \
parseopts.hh
start_gui.hh \
graphical_terminal_io.hh \
parse_opts.hh

View File

@ -48,19 +48,19 @@ libbackend_la_LDFLAGS = $(PYTHON_EXTRA_LDFLAGS) \
# Please keep this in sorted order:
libbackend_la_SOURCES = \
history.cc \
observedSubject.cc \
observed_subject.cc \
process.cc \
schedulable.cc \
schedulableStatus.cc \
simulationStatus.cc \
schedulable_status.cc \
simulation_status.cc \
slice.cc
noinst_HEADERS = \
history.hh \
observedSubject.hh \
observed_subject.hh \
process.hh \
schedulable.hh \
schedulableStatus.hh \
simulationStatus.hh \
schedulable_status.hh \
simulation_status.hh \
slice.hh

View File

@ -27,9 +27,9 @@
#include <iostream>
#include "slice.hh"
#include "observedSubject.hh"
#include "simulationStatus.hh"
#include "schedulableStatus.hh"
#include "observed_subject.hh"
#include "simulation_status.hh"
#include "schedulable_status.hh"
#include "../templates/smartp.hh"
namespace sgpem

View File

@ -18,7 +18,7 @@
// along with SGPEMv2; if not, write to the Free Software
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#include "observedSubject.hh"
#include "observed_subject.hh"
using namespace std;
using namespace sgpem;

View File

@ -18,7 +18,7 @@
// along with SGPEMv2; if not, write to the Free Software
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#include "schedulableStatus.hh"
#include "schedulable_status.hh"
using namespace sgpem;
using namespace std;

View File

@ -18,7 +18,7 @@
// along with SGPEMv2; if not, write to the Free Software
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#include "simulationStatus.hh"
#include "simulation_status.hh"
using namespace sgpem;
using namespace std;
using namespace memory;

View File

@ -24,7 +24,7 @@
#include "config.h"
#include <list>
#include "schedulableStatus.hh"
#include "schedulable_status.hh"
#include "../templates/smartp.hh"
namespace sgpem

View File

@ -23,7 +23,7 @@
#include "config.h"
#include "simulationStatus.hh"
#include "simulation_status.hh"
namespace sgpem
{

View File

@ -21,7 +21,7 @@
#include "config.h"
#include "gettext.h"
#include "graphicalterminalio.hh"
#include "graphical_terminal_io.hh"
#include <gtkmm/button.h>
#include <gtkmm/textview.h>

View File

@ -29,7 +29,7 @@
#include <gtkmm/textview.h>
#include <glibmm/ustring.h>
#include "iomanager.hh"
#include "io_manager.hh"
namespace sgpem {

View File

@ -22,15 +22,15 @@
#include "gettext.h"
#include "main.hh"
#include "parseopts.hh"
#include "startgui.hh"
#include "parse_opts.hh"
#include "start_gui.hh"
#include "templates/smartp.hh"
#include "backend/history.hh"
#include "backend/slice.hh"
#include "backend/schedulable.hh"
#include "backend/schedulableStatus.hh"
#include "backend/simulationStatus.hh"
#include "backend/schedulable_status.hh"
#include "backend/simulation_status.hh"
#include "backend/process.hh"
#include <iostream>

View File

@ -21,7 +21,7 @@
#include "config.h"
#include "gettext.h"
#include "mainwindow.hh"
#include "main_window.hh"
#include <gtkmm/box.h>
#include <gtkmm/button.h>

View File

@ -22,7 +22,7 @@
#include "gettext.h"
#include "main.hh"
#include "parseopts.hh"
#include "parse_opts.hh"
#ifdef _GNU_SOURCE
#include <getopt.h>

View File

@ -21,8 +21,8 @@
#include "config.h"
#include "gettext.h"
#include "mainwindow.hh"
#include "startgui.hh"
#include "main_window.hh"
#include "start_gui.hh"
#include <gtkmm/main.h>