15 lines
343 B
C++
15 lines
343 B
C++
|
|
#ifndef COMMON_H_INCLUDED_
|
|
#define COMMON_H_INCLUDED_
|
|
|
|
#include <iostream>
|
|
|
|
#define log_out(hurr) \
|
|
std::cout << "[" << __FILE__ << ":" << __LINE__ << "] " << hurr << std::endl;
|
|
#define log_err(hurr) \
|
|
std::cerr << "[" << __FILE__ << ":" << __LINE__ << "] " << hurr << std::endl;
|
|
|
|
|
|
#endif // COMMON_H_INCLUDED_
|
|
|
|
// vim:set sts=2 sw=2 et:
|