forked from M-Labs/nac3
42 lines
708 B
C++
42 lines
708 B
C++
|
#pragma once
|
||
|
|
||
|
#include <cstdlib>
|
||
|
#include <cstdio>
|
||
|
|
||
|
template <class T>
|
||
|
void print_value(const T& value) {}
|
||
|
|
||
|
template <>
|
||
|
void print_value(const int8_t& value) {
|
||
|
printf("%d", value);
|
||
|
}
|
||
|
|
||
|
template <>
|
||
|
void print_value(const int32_t& value) {
|
||
|
printf("%d", value);
|
||
|
}
|
||
|
|
||
|
template <>
|
||
|
void print_value(const uint8_t& value) {
|
||
|
printf("%u", value);
|
||
|
}
|
||
|
|
||
|
template <>
|
||
|
void print_value(const uint32_t& value) {
|
||
|
printf("%u", value);
|
||
|
}
|
||
|
|
||
|
template <>
|
||
|
void print_value(const double& value) {
|
||
|
printf("%f", value);
|
||
|
}
|
||
|
|
||
|
// template <double>
|
||
|
// void print_value(const double& value) {
|
||
|
// printf("%f", value);
|
||
|
// }
|
||
|
//
|
||
|
// template <char *>
|
||
|
// void print_value(const char*& value) {
|
||
|
// printf("%f", value);
|
||
|
// }
|