More functions to get available property names

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@100 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Jan Möbius
2009-04-27 09:12:06 +00:00
parent 8161142b1d
commit 21ab756aa5
2 changed files with 114 additions and 3 deletions

View File

@@ -64,4 +64,103 @@ void BaseKernel::property_stats(std::ostream& _ostr) const
}
}
void BaseKernel::vprop_stats( std::string& _string ) const
{
_string.clear();
PropertyContainer::Properties::const_iterator it;
const PropertyContainer::Properties& vps = vprops_.properties();
for (it=vps.begin(); it!=vps.end(); ++it)
*it == NULL ? _string += "[deleted] \n" : _string += (*it)->name();
}
void BaseKernel::hprop_stats( std::string& _string ) const
{
_string.clear();
PropertyContainer::Properties::const_iterator it;
const PropertyContainer::Properties& hps = hprops_.properties();
for (it=hps.begin(); it!=hps.end(); ++it)
*it == NULL ? _string += "[deleted] \n" : _string += (*it)->name();
}
void BaseKernel::eprop_stats( std::string& _string ) const
{
_string.clear();
PropertyContainer::Properties::const_iterator it;
const PropertyContainer::Properties& eps = eprops_.properties();
for (it=eps.begin(); it!=eps.end(); ++it)
*it == NULL ? _string += "[deleted] \n" : _string += (*it)->name();
}
void BaseKernel::fprop_stats( std::string& _string ) const
{
_string.clear();
PropertyContainer::Properties::const_iterator it;
const PropertyContainer::Properties& fps = fprops_.properties();
for (it=fps.begin(); it!=fps.end(); ++it)
*it == NULL ? _string += "[deleted] \n" : _string += (*it)->name();
}
void BaseKernel::mprop_stats( std::string& _string ) const
{
_string.clear();
PropertyContainer::Properties::const_iterator it;
const PropertyContainer::Properties& mps = mprops_.properties();
for (it=mps.begin(); it!=mps.end(); ++it)
*it == NULL ? _string += "[deleted] \n" : _string += (*it)->name();
}
void BaseKernel::vprop_stats(std::ostream& _ostr ) const
{
PropertyContainer::Properties::const_iterator it;
const PropertyContainer::Properties& vps = vprops_.properties();
for (it=vps.begin(); it!=vps.end(); ++it)
*it == NULL ? (void)(_ostr << "[deleted]" << "\n") : (*it)->stats(_ostr);
}
void BaseKernel::hprop_stats(std::ostream& _ostr ) const
{
PropertyContainer::Properties::const_iterator it;
const PropertyContainer::Properties& hps = hprops_.properties();
for (it=hps.begin(); it!=hps.end(); ++it)
*it == NULL ? (void)(_ostr << "[deleted]" << "\n") : (*it)->stats(_ostr);
}
void BaseKernel::eprop_stats(std::ostream& _ostr ) const
{
PropertyContainer::Properties::const_iterator it;
const PropertyContainer::Properties& eps = eprops_.properties();
for (it=eps.begin(); it!=eps.end(); ++it)
*it == NULL ? (void)(_ostr << "[deleted]" << "\n") : (*it)->stats(_ostr);
}
void BaseKernel::fprop_stats(std::ostream& _ostr ) const
{
PropertyContainer::Properties::const_iterator it;
const PropertyContainer::Properties& fps = fprops_.properties();
for (it=fps.begin(); it!=fps.end(); ++it)
*it == NULL ? (void)(_ostr << "[deleted]" << "\n") : (*it)->stats(_ostr);
}
void BaseKernel::mprop_stats(std::ostream& _ostr ) const
{
PropertyContainer::Properties::const_iterator it;
const PropertyContainer::Properties& mps = mprops_.properties();
for (it=mps.begin(); it!=mps.end(); ++it)
*it == NULL ? (void)(_ostr << "[deleted]" << "\n") : (*it)->stats(_ostr);
}
}

View File

@@ -521,6 +521,18 @@ public:
void property_stats(std::ostream& _ostr = std::clog) const;
void vprop_stats( std::string& _string ) const;
void hprop_stats( std::string& _string ) const;
void eprop_stats( std::string& _string ) const;
void fprop_stats( std::string& _string ) const;
void mprop_stats( std::string& _string ) const;
void vprop_stats(std::ostream& _ostr = std::clog) const;
void hprop_stats(std::ostream& _ostr = std::clog) const;
void eprop_stats(std::ostream& _ostr = std::clog) const;
void fprop_stats(std::ostream& _ostr = std::clog) const;
void mprop_stats(std::ostream& _ostr = std::clog) const;
public:
typedef PropertyContainer::iterator prop_iterator;