mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
23 lines
353 B
C++
23 lines
353 B
C++
#pragma once
|
|
|
|
#include <QString>
|
|
#include <boost/preprocessor.hpp>
|
|
#include <string>
|
|
|
|
#include "debug/log.hpp"
|
|
|
|
namespace chatterino {
|
|
|
|
enum class HighlightState {
|
|
None,
|
|
Highlighted,
|
|
NewMessage,
|
|
};
|
|
|
|
inline QString qS(const std::string &string)
|
|
{
|
|
return QString::fromStdString(string);
|
|
}
|
|
|
|
} // namespace chatterino
|