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