- Moved Simulation and ConcreteSimulation to the backend
> - Completed ConcreteSimulation, i think it is all we need at the moment... git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@773 3ecf2c5c-341e-0410-92b4-d18e462d057c
This commit is contained in:
parent
cab84a0e3d
commit
a092f3dc7b
7 changed files with 196 additions and 225 deletions
|
@ -150,6 +150,7 @@ src_backend_libbackend_la_LDFLAGS = \
|
|||
src_backend_libbackend_la_SOURCES = \
|
||||
src/backend/concrete_environment.cc \
|
||||
src/backend/concrete_history.cc \
|
||||
src/backend/concrete_simulation.cc \
|
||||
src/backend/dynamic_process.cc \
|
||||
src/backend/dynamic_request.cc \
|
||||
src/backend/dynamic_resource.cc \
|
||||
|
@ -175,6 +176,7 @@ src_backend_libbackend_la_SOURCES = \
|
|||
src/backend/schedulable.cc \
|
||||
src/backend/scheduler.cc \
|
||||
src/backend/serialize_visitor.cc \
|
||||
src/backend/simulation.cc \
|
||||
src/backend/static_process.cc \
|
||||
src/backend/static_request.cc \
|
||||
src/backend/static_resource.cc \
|
||||
|
@ -210,6 +212,7 @@ pkginclude_HEADERS += \
|
|||
src/backend/schedulable.hh \
|
||||
src/backend/scheduler.hh \
|
||||
src/backend/serialize_visitor.cc \
|
||||
src/backend/simulation.hh \
|
||||
src/backend/sub_request.hh \
|
||||
src/backend/thread.hh \
|
||||
src/backend/user_interrupt_exception.hh
|
||||
|
@ -219,6 +222,7 @@ pkginclude_HEADERS += \
|
|||
noinst_HEADERS += \
|
||||
src/backend/concrete_environment.hh \
|
||||
src/backend/concrete_history.hh \
|
||||
src/backend/concrete_simulation.hh \
|
||||
src/backend/dynamic_process.hh \
|
||||
src/backend/dynamic_request.hh \
|
||||
src/backend/dynamic_resource.hh \
|
||||
|
@ -265,7 +269,6 @@ sgpemv2_LDADD = \
|
|||
|
||||
# Please keep this in sorted order:
|
||||
sgpemv2_SOURCES = \
|
||||
src/concrete_simulation.cc \
|
||||
src/graphical_terminal_io.cc \
|
||||
src/gui_builder.cc \
|
||||
src/main.cc \
|
||||
|
@ -273,12 +276,10 @@ sgpemv2_SOURCES = \
|
|||
src/observer.cc \
|
||||
src/parse_opts.cc \
|
||||
src/schedulables_widget.cc \
|
||||
src/simulation.cc \
|
||||
src/standard_io.cc \
|
||||
src/text_simulation.cc
|
||||
|
||||
noinst_HEADERS += \
|
||||
src/concrete_simulation.hh \
|
||||
src/graphical_simulation.hh \
|
||||
src/graphical_terminal_io.hh \
|
||||
src/gui_builder.hh \
|
||||
|
@ -288,7 +289,6 @@ noinst_HEADERS += \
|
|||
src/observer.hh \
|
||||
src/parse_opts.hh \
|
||||
src/schedulables_widget.hh \
|
||||
src/simulation.hh \
|
||||
src/standard_io.hh \
|
||||
src/text_simulation.hh
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue