Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Parameters/Validators/Specific/KeyValueValidator.hpp

    r043598 r770ec6  
    1515#endif
    1616
    17 #include "Parameters/Specifics/KeyValuePair.hpp"
     17#include <string>
     18
    1819#include "Parameters/Validators/Validator.hpp"
    1920
     
    2122 * concatenation of the following pattern "...=...;"
    2223 */
    23 class KeyValueValidator : public Validator<KeyValuePair>
     24class KeyValueValidator : public Validator<std::string>
    2425{
    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;
    2829};
    2930
Note: See TracChangeset for help on using the changeset viewer.