/* * AtomIdValidator.hpp * * Created on: May 10, 2012 * Author: heber */ #ifndef ATOMIDVALIDATOR_HPP_ #define ATOMIDVALIDATOR_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "types.hpp" #include "Parameters/Validators/Validator.hpp" /** This validators checks whether the given atomic id is present in the World. * */ class AtomIdValidator : public Validator { bool isValid(const atomId_t & _value) const; bool operator==(const Validator &_instance) const; Validator< atomId_t >* clone() const; }; #endif /* ATOMIDVALIDATOR_HPP_ */