Sha256: 4aa3cc1f879f4ba31584ca602a2819953dba8efd297868314d6dddf1d98eb4e5

Contents?: true

Size: 339 Bytes

Versions: 27

Compression:

Stored size: 339 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

27 entries across 27 versions & 1 rubygems

Version Path
xot-0.1.21 include/xot/debug.h
xot-0.1.20 include/xot/debug.h
xot-0.1.19 include/xot/debug.h
xot-0.1.16 include/xot/debug.h
xot-0.1.15 include/xot/debug.h
xot-0.1.14 include/xot/debug.h
xot-0.1.13 include/xot/debug.h