aboutsummaryrefslogtreecommitdiff
path: root/src/base.hpp
blob: e3dfc1eeac73bac4c806eb7015d82ab3cb1819ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#pragma once
#include "pre.hpp"

#include <cassert>
#include <chrono>
#include <stdexcept>
#include <string>
#include <string_view>

namespace cru {
// typedefs
using String = std::wstring;
using MultiByteString = std::string;

using StringView = std::wstring_view;
using MultiByteStringView = std::string_view;

using FloatSecond = std::chrono::duration<double, std::chrono::seconds::period>;

enum class FlowControl { Continue, Break };

class Object {
 public:
  Object() = default;
  Object(const Object&) = default;
  Object& operator=(const Object&) = default;
  Object(Object&&) = default;
  Object& operator=(Object&&) = default;
  virtual ~Object() = default;
};

struct Interface {
  virtual ~Interface() = default;
};

[[noreturn]] inline void UnreachableCode() {
  throw std::logic_error("Unreachable code.");
}
}  // namespace cru