You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
403 B
C++

#ifndef ALLPOLICIESVALIDATOR_H
#define ALLPOLICIESVALIDATOR_H
#include "validator.h"
class AllPoliciesValidator : public Validator
{
public:
explicit AllPoliciesValidator(const std::list<std::shared_ptr<Policy>>& policies);
virtual ~AllPoliciesValidator() override;
virtual ValidateResult validate(const std::shared_ptr<Actor>& actor) const override;
};
#endif // ALLPOLICIESVALIDATOR_H