mirror of
https://github.com/ciphervance/supercell-wx.git
synced 2025-10-30 21:00:05 +00:00
28 lines
440 B
C++
28 lines
440 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace scwx
|
|
{
|
|
namespace common
|
|
{
|
|
|
|
namespace Characters
|
|
{
|
|
|
|
constexpr char DEGREE = static_cast<char>(0xb0);
|
|
constexpr char ETX = static_cast<char>(0x03);
|
|
constexpr char NUL = static_cast<char>(0x00);
|
|
constexpr char SOH = static_cast<char>(0x01);
|
|
|
|
} // namespace Characters
|
|
|
|
namespace Unicode
|
|
{
|
|
|
|
extern const std::string kDegree;
|
|
|
|
} // namespace Unicode
|
|
|
|
} // namespace common
|
|
} // namespace scwx
|