cutelyst  4.3.0
A C++ Web Framework built on top of Qt, using the simple approach of Catalyst (Perl) framework.
validatorboolean.h
1 /*
2  * SPDX-FileCopyrightText: (C) 2017-2023 Matthias Fehring <mf@huessenbergnetz.de>
3  * SPDX-License-Identifier: BSD-3-Clause
4  */
5 #ifndef CUTELYSTVALIDATORBOOLEAN_H
6 #define CUTELYSTVALIDATORBOOLEAN_H
7 
8 #include "validatorrule.h"
9 
10 #include <Cutelyst/cutelyst_global.h>
11 
12 namespace Cutelyst {
13 
14 class ValidatorBooleanPrivate;
15 
36 class CUTELYST_PLUGIN_UTILS_VALIDATOR_EXPORT ValidatorBoolean : public ValidatorRule
37 {
38 public:
47  ValidatorBoolean(const QString &field,
48  const ValidatorMessages &messages = ValidatorMessages(),
49  const QString &defValKey = QString());
50 
54  ~ValidatorBoolean() override;
55 
56 protected:
64  ValidatorReturnType validate(Context *c, const ParamsMultiMap &params) const override;
65 
69  QString genericValidationError(Context *c,
70  const QVariant &errorData = QVariant()) const override;
71 
72 private:
73  Q_DECLARE_PRIVATE(ValidatorBoolean) // NOLINT(cppcoreguidelines-pro-type-reinterpret-cast)
74  Q_DISABLE_COPY(ValidatorBoolean)
75 };
76 
77 } // namespace Cutelyst
78 
79 #endif // CUTELYSTVALIDATORBOOLEAN_H
Stores custom error messages and the input field label.
Checks if a value can be casted into a boolean.
The Cutelyst Context.
Definition: context.h:42
The Cutelyst namespace holds all public Cutelyst API.
Base class for all validator rules.
Contains the result of a single input parameter validation.
Definition: validatorrule.h:49