summaryrefslogtreecommitdiff
path: root/src/localization/line_id.hpp
blob: 168c28d74d3eb7df1f3e2bb3770fd524e7300177 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#pragma once

#include <optional>
#include <string>

namespace bot {
  namespace loc {
    enum LineId { PingResponse };

    std::optional<LineId> string_to_line_id(const std::string &str);
  }
}