- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Parameters/Validators/Specific/KeyValueValidator.cpp
r94d5ac6 r043598 38 38 #include "KeyValueValidator.hpp" 39 39 40 bool KeyValueValidator::isValid(const std::string& _value) const40 bool KeyValueValidator::isValid(const KeyValuePair & _value) const 41 41 { 42 42 size_t keyvaluestart = 0; … … 66 66 } 67 67 68 bool KeyValueValidator::operator==(const Validator< std::string> &_instance) const68 bool KeyValueValidator::operator==(const Validator<KeyValuePair> &_instance) const 69 69 { 70 70 const KeyValueValidator *inst = … … 76 76 } 77 77 78 Validator< std::string>* KeyValueValidator::clone() const78 Validator< KeyValuePair >* KeyValueValidator::clone() const 79 79 { 80 Validator< std::string> *inst =80 Validator< KeyValuePair > *inst = 81 81 new KeyValueValidator(); 82 82 return inst;
Note:
See TracChangeset
for help on using the changeset viewer.