[DEV] remove deprecated API

This commit is contained in:
Edouard DUPIN 2016-03-11 21:43:51 +01:00
parent b3a3f41813
commit 6fcd9fe9e0
2 changed files with 3 additions and 8 deletions

View File

@ -79,10 +79,6 @@ void eproperty::Interface::propertyDisplay(bool _changeOnly) const {
}
}
void eproperty::Interface::onPropertyChangeValue() {
// nothing to do ...
}
std::map<std::string, std::string> eproperty::Interface::propertyGetAll(bool _notIfDefault) const {
std::map<std::string, std::string> out;
for (auto &it : m_list) {

View File

@ -61,9 +61,6 @@ namespace eproperty {
* @return map on the propertys
*/
std::map<std::string, std::string> propertyGetAll(bool _notIfDefault=true) const;
// deprecated
virtual void onPropertyChangeValue();
public:
/**
* @brief Get count of propertys.
@ -72,10 +69,12 @@ namespace eproperty {
size_t getPropertyCount() const;
/**
* @brief Get name of a propertys.
* @return _id Id of the property.
* @param[in] _id Id of the property.
* @param[in] _name name of the property.
* @return pointer on the property.
*/
eproperty::Property* getPropertyRaw(const size_t& _id) const;
//! @previous
eproperty::Property* getPropertyRaw(const std::string _name) const;
};
}