- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parameters/Validators/Specific/KeyValueValidator.hpp
r770ec6 r043598 15 15 #endif 16 16 17 #include <string> 18 17 #include "Parameters/Specifics/KeyValuePair.hpp" 19 18 #include "Parameters/Validators/Validator.hpp" 20 19 … … 22 21 * concatenation of the following pattern "...=...;" 23 22 */ 24 class KeyValueValidator : public Validator< std::string>23 class KeyValueValidator : public Validator<KeyValuePair> 25 24 { 26 bool isValid(const std::string& _value) const;27 bool operator==(const Validator< std::string> &_instance) const;28 Validator< std::string>* clone() const;25 bool isValid(const KeyValuePair & _value) const; 26 bool operator==(const Validator<KeyValuePair> &_instance) const; 27 Validator< KeyValuePair >* clone() const; 29 28 }; 30 29
Note:
See TracChangeset
for help on using the changeset viewer.