kdebug.h

Detailed Description

Definition in filekdebug.h.

#include<fbxfilesdk/components/kbaselib/kbaselib_h.h>
#include<fbxfilesdk/components/kbaselib/klib/ktime.h>
#include<fbxfilesdk/fbxfilesdk_nsbegin.h>
#include<fbxfilesdk/fbxfilesdk_nsend.h>

Include dependency graph for kdebug.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.


Defines

#define K_CHECKRTNV(condition, value)
 Checks the condition, if it evaluates to false asserts and returns value.
#define K_CHECKRTN(condition)
 Checks the condition, if it evaluates to false asserts and returns.

Define Documentation

#define K_CHECKRTN(condition  ) 

Value:

if( !(condition) ){                     \
        K_ASSERT_MSG_NOW( #condition );     \
        return;                             \
    }
Checks the condition, if it evaluates to false asserts and returns.

Definition at line176of filekdebug.h.

#define K_CHECKRTNV(condition,
value  ) 

Value:

if( !(condition) ){                     \
        K_ASSERT_MSG_NOW( #condition );     \
        return value;                       \
    }
Checks the condition, if it evaluates to false asserts and returns value.

Definition at line167of filekdebug.h.