aboutsummaryrefslogtreecommitdiff
path: root/include/openvic-dataloader/detail/Encoding.hpp
blob: 12a0524773cc898d968ef98bee2cd0f490d9f205 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include <cstdint>

namespace ovdl::detail {
   enum class Encoding : std::int8_t {
      Unknown,
      Ascii,
      Utf8,
      Windows1251,
      Windows1252
   };
}