|
From: <den...@us...> - 2009-12-24 16:05:37
|
Revision: 20
http://dsim.svn.sourceforge.net/dsim/?rev=20&view=rev
Author: denis_arnaud
Date: 2009-12-24 16:05:27 +0000 (Thu, 24 Dec 2009)
Log Message:
-----------
[Dev] Now delegates the booking sell to the SimCRS and AirInv services.
Modified Paths:
--------------
trunk/dsim/dsim/command/Simulator.cpp
trunk/dsim/dsim/command/Simulator.hpp
trunk/dsim/dsim/service/Makefile.am
Modified: trunk/dsim/dsim/command/Simulator.cpp
===================================================================
--- trunk/dsim/dsim/command/Simulator.cpp 2009-12-24 15:32:19 UTC (rev 19)
+++ trunk/dsim/dsim/command/Simulator.cpp 2009-12-24 16:05:27 UTC (rev 20)
@@ -31,6 +31,9 @@
// Make a booking
ioSIMCRS_Service.sell (lAirlineCode, lPartySize);
+ // DEBUG
+ DSIM_LOG_DEBUG ("The simulation has ended");
+
} catch (const std::exception& lStdError) {
DSIM_LOG_ERROR ("Error: " << lStdError.what());
throw SimulationException();
Modified: trunk/dsim/dsim/command/Simulator.hpp
===================================================================
--- trunk/dsim/dsim/command/Simulator.hpp 2009-12-24 15:32:19 UTC (rev 19)
+++ trunk/dsim/dsim/command/Simulator.hpp 2009-12-24 16:05:27 UTC (rev 20)
@@ -20,7 +20,7 @@
private:
/** Perform a simulation. */
- static void simulate (SIMCRS::SIMCRS_Service& lSIMCRS_Service);
+ static void simulate (SIMCRS::SIMCRS_Service&);
private:
/** Constructors. */
Modified: trunk/dsim/dsim/service/Makefile.am
===================================================================
--- trunk/dsim/dsim/service/Makefile.am 2009-12-24 15:32:19 UTC (rev 19)
+++ trunk/dsim/dsim/service/Makefile.am 2009-12-24 16:05:27 UTC (rev 20)
@@ -5,7 +5,7 @@
noinst_LTLIBRARIES= libsvc.la
libsvc_la_SOURCES= $(svc_h_sources) $(svc_cc_sources)
-libsvc_la_CXXFLAGS = $(SOCI_CFLAGS)
+libsvc_la_CXXFLAGS = $(BOOST_CFLAGS)
#pkgincludedir = $(includedir)/@PACKAGE@/service
#pkginclude_HEADERS = $(svc_h_sources)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|