AppEasy Core SDK  1.5.0
Cross platform mobile and desktop app and game development SDK - The easy way to make apps
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Defines
CzUtil.h File Reference
#include "CzTypes.h"
#include "CzDebug.h"

Go to the source code of this file.

Classes

class  CzUtils
 CzUtils - Pure static utility class. More...
class  CzMetrics
 CzMetrics - Metrics class. More...
class  CzGlobals
 CzGlobals - Global data. More...

Defines

#define SAFE_DELETE(x)   if (x != NULL) { delete x; x = NULL; }
 A macro that safely deletes an object.
#define SAFE_DELETE_ARRAY(x)   if (x != NULL) { delete [] x; x = NULL; }
 A macro that safely deletes an array of objects.
#define CZ_HASH(x)   (CzString::CalculateHash(x))
 A macro that calculates the hash of a string.
#define FRAME_SPEED_LOCK_MS   16.67f
 A macro that defines the frame speed lock in milliseconds.
#define CDEFINE_SINGLETON(the_class)
#define CDECLARE_SINGLETON(the_class)

Typedefs

typedef int(* CzCallback )(void *caller, void *data)
typedef void * CzCallbackData