Sha256: 9ca0e0113775d45be3a005c81fb05de331cda27196b5ef84ba82599a69bf090f

Contents?: true

Size: 285 Bytes

Versions: 9

Compression:

Stored size: 285 Bytes

Contents

// -*- c++ -*-
#pragma once
#ifndef __XOT_DEBUG_H__
#define __XOT_DEBUG_H__


namespace Xot
{


#ifdef _DEBUG

	void dout (const char* format, ...);

	void doutln (const char* format, ...);

#else

	inline void dout(...) {}

	inline void doutln(...) {}

#endif


}// Xot


#endif//EOH

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
xot-0.1.12 include/xot/debug.h
xot-0.1.11 include/xot/debug.h
xot-0.1.10 include/xot/debug.h
xot-0.1.9 include/xot/debug.h
xot-0.1.8 include/xot/debug.h
xot-0.1.7 include/xot/debug.h
xot-0.1.6 include/xot/debug.h
xot-0.1.5 include/xot/debug.h
xot-0.1.4 include/xot/debug.h