USRP_Server  2.0
A flexible, GPU-accelerated radio-frequency readout software.
USRP_server_console_print.hpp
Go to the documentation of this file.
1 /* @brief Containd definitions of functions for cool printing on linux console.
3  *
4  * Avoid early import error.
5  * @todo Should be integrated in settings.
6 */
7 #pragma once
8 #ifndef USRP_PRINT_INCLUDED
10 #define USRP_PRINT_INCLUDED
11 #include <iostream>
12 #include <string.h>
13 #include <sstream>
14 #include <unistd.h>
15 #include <stdlib.h>
16 #include <stdio.h>
18 void print_error(std::string text);
19 
20 void print_warning(std::string text);
21 
22 void print_debug(std::string text, double value);
23 #endif
void print_error(std::string text)
void print_warning(std::string text)
void print_debug(std::string text, double value)