libcluon  0.0.148
ProtoConstants.hpp
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2017-2018 Christian Berger
3  *
4  * This Source Code Form is subject to the terms of the Mozilla Public
5  * License, v. 2.0. If a copy of the MPL was not distributed with this
6  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7  */
8 
9 #ifndef CLUON_PROTOCONSTANTS_HPP
10 #define CLUON_PROTOCONSTANTS_HPP
11 
12 #include <cstdint>
13 
14 // clang-format off
15 namespace cluon {
16  enum class ProtoConstants : uint8_t {
17  VARINT = 0,
18  EIGHT_BYTES = 1,
19  LENGTH_DELIMITED = 2,
20  FOUR_BYTES = 5, };
21 }
22 // clang-format on
23 
24 #endif
Definition: cluon.hpp:65
ProtoConstants
Definition: ProtoConstants.hpp:16