diff --git a/src/Makefile.am b/src/Makefile.am index 9e7b135..9817d5a 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -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 diff --git a/src/backend/Makefile.am b/src/backend/Makefile.am index 0b1dd6f..3e756ad 100644 --- a/src/backend/Makefile.am +++ b/src/backend/Makefile.am @@ -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 diff --git a/src/backend/history.hh b/src/backend/history.hh index 381090d..8dd0969 100644 --- a/src/backend/history.hh +++ b/src/backend/history.hh @@ -27,9 +27,9 @@ #include #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 diff --git a/src/backend/observedSubject.cc b/src/backend/observed_subject.cc similarity index 98% rename from src/backend/observedSubject.cc rename to src/backend/observed_subject.cc index 4ff4e89..e50d5f8 100644 --- a/src/backend/observedSubject.cc +++ b/src/backend/observed_subject.cc @@ -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; diff --git a/src/backend/observedSubject.hh b/src/backend/observed_subject.hh similarity index 100% rename from src/backend/observedSubject.hh rename to src/backend/observed_subject.hh diff --git a/src/backend/schedulableStatus.cc b/src/backend/schedulable_status.cc similarity index 98% rename from src/backend/schedulableStatus.cc rename to src/backend/schedulable_status.cc index 13ba721..86a349f 100644 --- a/src/backend/schedulableStatus.cc +++ b/src/backend/schedulable_status.cc @@ -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; diff --git a/src/backend/schedulableStatus.hh b/src/backend/schedulable_status.hh similarity index 100% rename from src/backend/schedulableStatus.hh rename to src/backend/schedulable_status.hh diff --git a/src/backend/simulationStatus.cc b/src/backend/simulation_status.cc similarity index 99% rename from src/backend/simulationStatus.cc rename to src/backend/simulation_status.cc index 3bdb920..61e609e 100644 --- a/src/backend/simulationStatus.cc +++ b/src/backend/simulation_status.cc @@ -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; diff --git a/src/backend/simulationStatus.hh b/src/backend/simulation_status.hh similarity index 98% rename from src/backend/simulationStatus.hh rename to src/backend/simulation_status.hh index f78ad1e..8b1f141 100644 --- a/src/backend/simulationStatus.hh +++ b/src/backend/simulation_status.hh @@ -24,7 +24,7 @@ #include "config.h" #include -#include "schedulableStatus.hh" +#include "schedulable_status.hh" #include "../templates/smartp.hh" namespace sgpem diff --git a/src/backend/slice.hh b/src/backend/slice.hh index 5d31f2e..bb59b72 100644 --- a/src/backend/slice.hh +++ b/src/backend/slice.hh @@ -23,7 +23,7 @@ #include "config.h" -#include "simulationStatus.hh" +#include "simulation_status.hh" namespace sgpem { diff --git a/src/graphicalterminalio.cc b/src/graphical_terminal_io.cc similarity index 97% rename from src/graphicalterminalio.cc rename to src/graphical_terminal_io.cc index a28194b..e32b4b3 100644 --- a/src/graphicalterminalio.cc +++ b/src/graphical_terminal_io.cc @@ -21,7 +21,7 @@ #include "config.h" #include "gettext.h" -#include "graphicalterminalio.hh" +#include "graphical_terminal_io.hh" #include #include diff --git a/src/graphicalterminalio.hh b/src/graphical_terminal_io.hh similarity index 98% rename from src/graphicalterminalio.hh rename to src/graphical_terminal_io.hh index c075083..c3fe16c 100644 --- a/src/graphicalterminalio.hh +++ b/src/graphical_terminal_io.hh @@ -29,7 +29,7 @@ #include #include -#include "iomanager.hh" +#include "io_manager.hh" namespace sgpem { diff --git a/src/iomanager.hh b/src/io_manager.hh similarity index 100% rename from src/iomanager.hh rename to src/io_manager.hh diff --git a/src/main.cc b/src/main.cc index 81093fd..dcc248f 100644 --- a/src/main.cc +++ b/src/main.cc @@ -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 diff --git a/src/mainwindow.cc b/src/main_window.cc similarity index 98% rename from src/mainwindow.cc rename to src/main_window.cc index 9be50b6..6a10372 100644 --- a/src/mainwindow.cc +++ b/src/main_window.cc @@ -21,7 +21,7 @@ #include "config.h" #include "gettext.h" -#include "mainwindow.hh" +#include "main_window.hh" #include #include diff --git a/src/mainwindow.hh b/src/main_window.hh similarity index 100% rename from src/mainwindow.hh rename to src/main_window.hh diff --git a/src/parseopts.cc b/src/parse_opts.cc similarity index 99% rename from src/parseopts.cc rename to src/parse_opts.cc index e0dc2ed..c704274 100644 --- a/src/parseopts.cc +++ b/src/parse_opts.cc @@ -22,7 +22,7 @@ #include "gettext.h" #include "main.hh" -#include "parseopts.hh" +#include "parse_opts.hh" #ifdef _GNU_SOURCE #include diff --git a/src/parseopts.hh b/src/parse_opts.hh similarity index 100% rename from src/parseopts.hh rename to src/parse_opts.hh diff --git a/src/startgui.cc b/src/start_gui.cc similarity index 95% rename from src/startgui.cc rename to src/start_gui.cc index 506700d..7f63642 100644 --- a/src/startgui.cc +++ b/src/start_gui.cc @@ -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 diff --git a/src/startgui.hh b/src/start_gui.hh similarity index 100% rename from src/startgui.hh rename to src/start_gui.hh