veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
literals.hpp
1
// Copyright (c) 2019-2022 Xenios SEZC
2
// https://www.veriblock.org
3
// Distributed under the MIT software license, see the accompanying
4
// file LICENSE or http://www.opensource.org/licenses/mit-license.php.
5
6
#ifndef ALT_INTEGRATION_LITERAPS_HPP
7
#define ALT_INTEGRATION_LITERAPS_HPP
8
9
#include <vector>
10
#include <veriblock/pop/strutil.hpp>
11
12
namespace
altintegration
{
13
15
inline
std::vector<uint8_t>
operator
""
_unhex(
const
char
*str,
size_t
size) {
16
std::string hex{str, str + size};
17
return
altintegration::ParseHex
(hex);
18
}
19
21
inline
std::vector<uint8_t>
operator
""
_v(
const
char
*str,
size_t
size) {
22
return
std::vector<uint8_t>{str, str + size};
23
}
24
25
}
// namespace altintegration
26
27
#endif
// ALT_INTEGRATION_LITERAPS_HPP
altintegration
Defines logging helpers.
Definition:
block.hpp:14
altintegration::ParseHex
std::vector< uint8_t > ParseHex(const char *psz)
Parse bytes from hex.