From: <den...@us...> - 2010-07-12 15:21:35
|
Revision: 216 http://stdair.svn.sourceforge.net/stdair/?rev=216&view=rev Author: denis_arnaud Date: 2010-07-12 15:21:29 +0000 (Mon, 12 Jul 2010) Log Message: ----------- [Dev] Made private the type for a temporary return type. Modified Paths: -------------- trunk/stdair/stdair/bom/BomIterator.hpp Property Changed: ---------------- trunk/stdair/stdair/batches/ Property changes on: trunk/stdair/stdair/batches ___________________________________________________________________ Modified: svn:ignore - Makefile.in Makefile stdair .libs .deps + .deps .libs Makefile.in Makefile stdair stdair.log Modified: trunk/stdair/stdair/bom/BomIterator.hpp =================================================================== --- trunk/stdair/stdair/bom/BomIterator.hpp 2010-07-12 13:57:46 UTC (rev 215) +++ trunk/stdair/stdair/bom/BomIterator.hpp 2010-07-12 15:21:29 UTC (rev 216) @@ -28,7 +28,6 @@ // Define the pair of string and pointer of CONTENT. typedef typename std::pair<std::string, CONTENT*> value_type; - typedef boost::shared_ptr<value_type> value_type_shared_ptr; // Definition allowing the retrieve the ITERATOR type. typedef ITERATOR iterator_type; @@ -36,6 +35,10 @@ // Definition allowing the retrieve the difference type of the ITERATOR. typedef typename ITERATOR::difference_type difference_type; + private: + // Define the pair of string and pointer of CONTENT. + typedef boost::shared_ptr<value_type> value_type_shared_ptr; + public: /** Normal constructor. */ BomIterator_T (iterator_type iIterator) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |