2 Copyright (c) 2006 Paolo Capriotti <p.capriotti@gmail.com>
3 (c) 2006 Maurizio Monge <maurizio.monge@kdemail.net>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
25 void operator()(void const *) const { }
30 template <typename T
> class Grid
;
31 template <typename T
> class PointerGrid
;
32 //typedef PointerGrid<ChessPiece> PieceGrid;
35 TAGUA_EXPORT
std::ostream
&operator <<(std::ostream
&os
, const QString
& s
);
37 inline const char* wrap_cptr(const char* ptr
) {
38 return ptr
? ptr
: "[NULL]";
41 QString
qPrintf(const char* fmt
, ...);
43 TAGUA_EXPORT QString
prettyTypeName(const char* name
);
47 __asm__
__volatile__("int $3\n\t");
52 #define M_PI 3.1415926
55 #define DEBUG_MSG(header, msg) (std::cerr << header << msg << "\n" \
56 << " in " << __PRETTY_FUNCTION__ << ", line " << __LINE__ << " of " << __FILE__ << std::endl)
57 #define ERROR(x) DEBUG_MSG("Error: ", x)
58 #define WARNING(x) DEBUG_MSG("Warning: ", x)