/* * Ops_Validator.hpp * * Created on: May 9, 2012 * Author: ankele */ #ifndef OPS_VALIDATOR_HPP_ #define OPS_VALIDATOR_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "Validator.hpp" template class And_Validator; template class Or_Validator; template class Not_Validator; template And_Validator operator&&(const Validator &a, const Validator &b); template Or_Validator operator||(const Validator &a, const Validator &b); template Not_Validator operator!(const Validator &a); #include "Ops_Validator_impl.hpp" #endif /* OPS_VALIDATOR_HPP_ */