lokinet/llarp/util/types.hpp
2020-02-24 14:27:44 -04:00

17 lines
317 B
C++

#ifndef LLARP_TYPES_H
#define LLARP_TYPES_H
#include <cstdint>
#include <string>
using byte_t = uint8_t;
using llarp_proto_version_t = std::uint8_t;
using llarp_time_t = std::uint64_t;
using llarp_seconds_t = std::uint64_t;
namespace llarp
{
using namespace std::literals;
}
#endif