diff --git a/eproperty/List.h b/eproperty/List.h index c9777aa..c33b93a 100644 --- a/eproperty/List.h +++ b/eproperty/List.h @@ -14,7 +14,7 @@ #include namespace eproperty { - template class List : public Property { + template class List : public Property { private: MY_TYPE m_value; //!< Element value ==> can be directly used. MY_TYPE m_default; //!< Default value. diff --git a/eproperty/Range.h b/eproperty/Range.h index 509c3ca..ce96ad0 100644 --- a/eproperty/Range.h +++ b/eproperty/Range.h @@ -12,7 +12,7 @@ #include namespace eproperty { - template class Range : public Property { + template class Range : public Property { private: MY_TYPE m_value; //!< Current value. MY_TYPE m_min; //!< Minimum value. diff --git a/eproperty/Value.h b/eproperty/Value.h index b1c883b..047a323 100644 --- a/eproperty/Value.h +++ b/eproperty/Value.h @@ -12,7 +12,7 @@ namespace eproperty { - template class Value : public Property { + template class Value : public Property { private: MY_TYPE m_value; //!< Current value. MY_TYPE m_default; //!< Default value. @@ -34,7 +34,7 @@ namespace eproperty { m_value(_defaultValue), m_default(_defaultValue) { - }; + } Value(eproperty::Interface& _paramListLink, const std::string& _name, const std::string& _description = "") : @@ -42,7 +42,7 @@ namespace eproperty { m_value(), m_default() { - }; + } /** * @brief Destructor. */ @@ -135,7 +135,7 @@ namespace eproperty { } }; - template std::ostream& operator <<(std::ostream& _os, const eproperty::Value& _obj) { + template std::ostream& operator <<(std::ostream& _os, const eproperty::Value& _obj) { _os << _obj.get(); return _os; }