| 1234567891011121314151617181920212223 |
- /**
- * warning.hh for jsonstroller
- *
- * Author: isundil <isundill@gmail.com>
- **/
- #pragma once
- #include "jsonException.hh"
- class Warning
- {
- public:
- Warning(const JsonException *);
- ~Warning();
- const JsonException &operator()() const;
- const JsonException *getPtrUnsafe() const;
- private:
- const JsonException *what;
- };
|