[DEV] remove deprecated API
This commit is contained in:
parent
b3a3f41813
commit
6fcd9fe9e0
@ -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> eproperty::Interface::propertyGetAll(bool _notIfDefault) const {
|
||||||
std::map<std::string, std::string> out;
|
std::map<std::string, std::string> out;
|
||||||
for (auto &it : m_list) {
|
for (auto &it : m_list) {
|
||||||
|
@ -61,9 +61,6 @@ namespace eproperty {
|
|||||||
* @return map on the propertys
|
* @return map on the propertys
|
||||||
*/
|
*/
|
||||||
std::map<std::string, std::string> propertyGetAll(bool _notIfDefault=true) const;
|
std::map<std::string, std::string> propertyGetAll(bool _notIfDefault=true) const;
|
||||||
|
|
||||||
// deprecated
|
|
||||||
virtual void onPropertyChangeValue();
|
|
||||||
public:
|
public:
|
||||||
/**
|
/**
|
||||||
* @brief Get count of propertys.
|
* @brief Get count of propertys.
|
||||||
@ -72,10 +69,12 @@ namespace eproperty {
|
|||||||
size_t getPropertyCount() const;
|
size_t getPropertyCount() const;
|
||||||
/**
|
/**
|
||||||
* @brief Get name of a propertys.
|
* @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.
|
* @return pointer on the property.
|
||||||
*/
|
*/
|
||||||
eproperty::Property* getPropertyRaw(const size_t& _id) const;
|
eproperty::Property* getPropertyRaw(const size_t& _id) const;
|
||||||
|
//! @previous
|
||||||
eproperty::Property* getPropertyRaw(const std::string _name) const;
|
eproperty::Property* getPropertyRaw(const std::string _name) const;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user