1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-30 22:29:56 +00:00
CLK/Outputs/Log.hpp

34 lines
501 B
C++
Raw Normal View History

//
// Log.hpp
// Clock Signal
//
// Created by Thomas Harte on 18/06/2018.
// Copyright © 2018 Thomas Harte. All rights reserved.
//
#ifndef Log_h
#define Log_h
#ifdef NDEBUG
#define LOG(x)
#define LOGNBR(x)
#define ERROR(x)
#define ERRORNBR(x)
#else
2018-06-21 03:02:32 +00:00
#include <iomanip>
#include <iostream>
2018-06-21 03:02:32 +00:00
#include <ios>
#define LOG(x) std::cout << x << std::endl
#define LOGNBR(x) std::cout << x
#define ERROR(x) std::cerr << x << std::endl
#define ERRORNBR(x) std::cerr << x
#endif
#endif /* Log_h */