- 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: # Please keep this in sorted order:
sgpemv2_SOURCES = \ sgpemv2_SOURCES = \
graphicalterminalio.cc \ graphical_terminal_io.cc \
main.cc \ main.cc \
mainwindow.cc \ main_window.cc \
parseopts.cc \ parse_opts.cc \
startgui.cc start_gui.cc
noinst_HEADERS = \ noinst_HEADERS = \
iomanager.hh \ io_manager.hh \
main.hh \ main.hh \
mainwindow.hh \ main_window.hh \
observer.hh \ observer.hh \
startgui.hh \ start_gui.hh \
graphicalterminalio.hh \ graphical_terminal_io.hh \
parseopts.hh parse_opts.hh

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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