git.fiddlerwoaroof.com
trace.h
2c5d6a01
 /* Copyright (C) CJ Affiliate
  *
  * You may use, distribute and modify this code under  the
  * terms of the  GNU General Public License  version 2  or
  * later.
  *
  * You should have received a copy of the license with this
  * file. If not, you will find a copy in the "LICENSE" file
  * at https://github.com/cjdev/dual-control.
  */
 
c8d91f67
 #ifndef TRACE_H_
c25857c9
 #define TRACE_H_
 #include <iostream>
 
 #define TRACE std::cout << "trace " << __FILE__ << " " << __LINE__ << std::endl;
 
 #endif