From: <qua...@us...> - 2010-10-13 13:28:27
|
Revision: 341 http://stdair.svn.sourceforge.net/stdair/?rev=341&view=rev Author: quannaus Date: 2010-10-13 13:28:20 +0000 (Wed, 13 Oct 2010) Log Message: ----------- [dev] Added the default constructor for STDAIR_Service (with out logger and dbssession initialisation). Modified Paths: -------------- trunk/stdair/stdair/STDAIR_Service.hpp trunk/stdair/stdair/service/STDAIR_Service.cpp Modified: trunk/stdair/stdair/STDAIR_Service.hpp =================================================================== --- trunk/stdair/stdair/STDAIR_Service.hpp 2010-10-04 09:11:49 UTC (rev 340) +++ trunk/stdair/stdair/STDAIR_Service.hpp 2010-10-13 13:28:20 UTC (rev 341) @@ -32,6 +32,11 @@ public: // ////////// Constructors and destructors ////////// /** + * @brief Default constructor. + */ + STDAIR_Service (); + + /** * @brief Constructor. * <br>The init() method is called; see the corresponding * documentation for more details. @@ -73,11 +78,6 @@ private: // /////// Construction and Destruction helper methods /////// /** - * @brief Default constructor. - */ - STDAIR_Service (); - - /** * @brief Default copy constructor. * @param[in] const STDAIR_Service& Reference on the STDAIR_Service handler * to be copied. Modified: trunk/stdair/stdair/service/STDAIR_Service.cpp =================================================================== --- trunk/stdair/stdair/service/STDAIR_Service.cpp 2010-10-04 09:11:49 UTC (rev 340) +++ trunk/stdair/stdair/service/STDAIR_Service.cpp 2010-10-13 13:28:20 UTC (rev 341) @@ -21,7 +21,6 @@ // ////////////////////////////////////////////////////////////////////// STDAIR_Service::STDAIR_Service () : _bomRoot (FacBom<BomRoot>::instance().create()) { - assert (false); } // ////////////////////////////////////////////////////////////////////// This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |