Sha256: 05370d4d6b035fc81f304d1142b10750d4906e9cc636c008753b85b96f39c750

Contents?: true

Size: 341 Bytes

Versions: 4

Compression:

Stored size: 341 Bytes

Contents

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


#if 1//def _DEBUG
#define XOT_USE_DOUT
#endif


namespace Xot
{


#ifdef XOT_USE_DOUT

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

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

#else

	inline void dout (...) {}

	inline void doutln (...) {}

#endif


}// Xot


#endif//EOH

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
xot-0.3 include/xot/debug.h
xot-0.2.1 include/xot/debug.h
xot-0.2 include/xot/debug.h
xot-0.1.42 include/xot/debug.h