Boost logo

Boost-Commit :

From: jmcintyre_at_[hidden]
Date: 2007-12-06 18:43:15


Author: jared
Date: 2007-12-06 18:43:14 EST (Thu, 06 Dec 2007)
New Revision: 41813
URL: http://svn.boost.org/trac/boost/changeset/41813

Log:
change access protection on members
Text files modified:
   sandbox/pinhole/boost/pinhole/property_group.hpp | 7 ++++---
   1 files changed, 4 insertions(+), 3 deletions(-)

Modified: sandbox/pinhole/boost/pinhole/property_group.hpp
==============================================================================
--- sandbox/pinhole/boost/pinhole/property_group.hpp (original)
+++ sandbox/pinhole/boost/pinhole/property_group.hpp 2007-12-06 18:43:14 EST (Thu, 06 Dec 2007)
@@ -719,9 +719,7 @@
             #pragma warning(pop)
         #endif
 
- private:
- property_group();
-
+ protected:
         template<typename Value_Type>
         void internal_add_property( const std::string &name,
                                     const std::string &description,
@@ -753,6 +751,9 @@
             m_properties.insert( std::make_pair(name, prop) );
         }
 
+ private:
+ property_group();
+
         void add_child(property_group* pChild)
         {
             if( NULL != pChild )


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk