1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 08:47:17 +01:00
SqMod/vendor/CPR/include/cpr/verbose.h

19 lines
331 B
C
Raw Normal View History

2021-03-26 23:18:51 +01:00
#ifndef CPR_VERBOSE_H_
#define CPR_VERBOSE_H_
namespace cpr {
class Verbose {
public:
Verbose() = default;
// NOLINTNEXTLINE(google-explicit-constructor, hicpp-explicit-conversions)
2021-07-02 16:44:48 +02:00
Verbose(const bool p_verbose) : verbose{p_verbose} {}
2021-03-26 23:18:51 +01:00
bool verbose = true;
};
} // namespace cpr
#endif /* CPR_VERBOSE_H_ */