O Manual de Programação do KDevelop: O Guia do Utilizador para Desenvolvimento de Aplicações C++ para o Ambiente de Trabalho K (KDE) com o ambiente de trabalho KDevelop, Versão 2.1 | ||
---|---|---|
Prev | Next |
The Debugging Macros provided by the Qt library can be read on the debug.html page of your Qt Online Reference Documentation, acessable on the link "Debugging Techniques" at the Qt Documentation index page.
The most recently used macros are
ASSERT(b)
CHECK&_;PTR(p)
Thereby, b is a boolean expression. Gives out a debugging warning if b is false; p is a pointer which is checked and gives out a warning, if p is null.
Details can be found in the Qt Online Reference.