1 | #ifndef CPR_VERBOSE_H_ |
---|---|
2 | #define CPR_VERBOSE_H_ |
3 | |
4 | namespace cpr { |
5 | |
6 | class Verbose { |
7 | public: |
8 | Verbose() = default; |
9 | // NOLINTNEXTLINE(google-explicit-constructor, hicpp-explicit-conversions) |
10 | Verbose(const bool p_verbose) : verbose{p_verbose} {} |
11 | |
12 | bool verbose = true; |
13 | }; |
14 | |
15 | } // namespace cpr |
16 | |
17 | |
18 | #endif /* CPR_VERBOSE_H_ */ |
19 |