18 lines
278 B
C++
18 lines
278 B
C++
#ifndef HEX_OPERATIONS_H
|
|
#define HEX_OPERATIONS_H
|
|
|
|
#include <bitset>
|
|
#include <cstdint>
|
|
#include <iostream>
|
|
#include <algorithm>
|
|
#include <string>
|
|
#include <iomanip>
|
|
#include <sstream>
|
|
|
|
namespace omni
|
|
{
|
|
std::string int_to_hex(unsigned int input);
|
|
}
|
|
|
|
#endif //HEX_OPERATIONS_H
|