12345678910111213141516171819202122232425262728293031323334353637383940 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2020-08-20
- * Changed: 2020-11-26
- *
- * */
- #ifndef LS_STD_LOG_LEVEL_HPP
- #define LS_STD_LOG_LEVEL_HPP
- #include <unordered_map>
- #include <ls_std/base/Class.hpp>
- #include "LogLevelValue.hpp"
- namespace ls_std {
- class LogLevel : public Class {
- public:
- explicit LogLevel(const ls_std::LogLevelValue& _value);
- LogLevel();
- ~LogLevel() override = default;
- operator unsigned char() const;
- LogLevel& operator=(const ls_std::LogLevelValue& _value);
- bool operator<=(const ls_std::LogLevelValue& _value);
- std::string toString() const;
- private:
- std::unordered_map<uint8_t , std::string> level {};
- ls_std::LogLevelValue value {};
- void _init();
- };
- }
- #endif
|