Design Pattern Examples
Overview of object-oriented design patterns
lusplus/helpers/uint32_to_binary.h
Go to the documentation of this file.
1
6
7#pragma once
8#ifndef __UINT32_TO_BINARY_H__
9#define __UINT32_TO_BINARY_H__
10
11#include <cstdint>
12#include <string>
13
14namespace Helpers
15{
25 std::string uint32_to_binary(uint32_t number);
26
27} // end namespace
28
29#endif //__UINT32_TO_BINARY_H__
The namespace containing all the "helper" functions in the C++ code.
std::string uint32_to_binary(uint32_t number)
Function to convert a 32-bit unsigned integer into a string representation containing all 32 bits.