diff --git a/PDebug_8cpp.html b/PDebug_8cpp.html index 09a32e4..e3a439f 100644 --- a/PDebug_8cpp.html +++ b/PDebug_8cpp.html @@ -71,16 +71,20 @@
#include "PDebug.h"
#include <cstring>
+#include <fmt/core.h>
+#include <spdlog/spdlog.h>
#include <stdarg.h>
Include dependency graph for PDebug.cpp:
- + - + + + diff --git a/PDebug_8cpp__incl.map b/PDebug_8cpp__incl.map index be211a7..cc01244 100644 --- a/PDebug_8cpp__incl.map +++ b/PDebug_8cpp__incl.map @@ -1,8 +1,10 @@ - + - + + + diff --git a/PDebug_8cpp__incl.md5 b/PDebug_8cpp__incl.md5 index 395025c..4d014cf 100644 --- a/PDebug_8cpp__incl.md5 +++ b/PDebug_8cpp__incl.md5 @@ -1 +1 @@ -698b885c4cad3a7f3ebc7c90b0465595 \ No newline at end of file +8b0a6a096def14cd43a13181f8e265a8 \ No newline at end of file diff --git a/PDebug_8cpp__incl.png b/PDebug_8cpp__incl.png index 835da2c..285e30b 100644 Binary files a/PDebug_8cpp__incl.png and b/PDebug_8cpp__incl.png differ diff --git a/PDebug_8h_source.html b/PDebug_8h_source.html index 59b29b1..f03d778 100644 --- a/PDebug_8h_source.html +++ b/PDebug_8h_source.html @@ -175,24 +175,24 @@
#define MAXSTRINGDBG
Definition: PDebug.h:90
#define MAXCALLERNAME
Definition: PDebug.h:89
Parchis Class declaration: Shows debug messages on screen (or in the UI)
Definition: PDebug.h:111
-
void print(int dbg_level, std::string dbg_msg)
Definition: PDebug.cpp:147
+
void print(int dbg_level, std::string dbg_msg)
Definition: PDebug.cpp:149
static void * savedObjCObject
Where I save the pointer to the Objective C Object (instance)
Definition: PDebug.h:121
static bool bSavedObjCObject
true if I've saved the object.
Definition: PDebug.h:122
char strMsg[MAXSTRINGDBG]
Memory slot to manipulate the debug string.
Definition: PDebug.h:128
-
void clearScreen()
Definition: PDebug.cpp:245
-
void setDebug(int new_var)
Definition: PDebug.cpp:95
-
void saveObjCObject(void *objectiveCObject)
Definition: PDebug.cpp:208
-
int getDebug()
Definition: PDebug.cpp:107
-
void setPrintToGui(bool new_var)
Definition: PDebug.cpp:221
+
void clearScreen()
Definition: PDebug.cpp:252
+
void setDebug(int new_var)
Definition: PDebug.cpp:97
+
void saveObjCObject(void *objectiveCObject)
Definition: PDebug.cpp:215
+
int getDebug()
Definition: PDebug.cpp:109
+
void setPrintToGui(bool new_var)
Definition: PDebug.cpp:228
char callerName[MAXCALLERNAME]
Memory slot to to store the caller name.
Definition: PDebug.h:127
static bool bPrintToGui
true if I've to call the savedObjCObject.
Definition: PDebug.h:123
-
void initAttributes()
Definition: PDebug.cpp:43
-
virtual ~PDebug()
Definition: PDebug.cpp:80
+
void initAttributes()
Definition: PDebug.cpp:45
+
virtual ~PDebug()
Definition: PDebug.cpp:82
static int debug
Overall debug level (shared between all Debug objects)
Definition: PDebug.h:119
-
PDebug()
Definition: PDebug.cpp:73
-
bool isPrintToGui()
Definition: PDebug.cpp:232
-
void setCallerName(std::string new_var)
Definition: PDebug.cpp:119
-
void printF(int dbg_level, const char *dbg_fmt,...)
Definition: PDebug.cpp:182
+
PDebug()
Definition: PDebug.cpp:75
+
bool isPrintToGui()
Definition: PDebug.cpp:239
+
void setCallerName(std::string new_var)
Definition: PDebug.cpp:121
+
void printF(int dbg_level, const char *dbg_fmt,...)
Definition: PDebug.cpp:189
Sample: PDebug Cocoa & Objective-C++ callback
// ParchisPDebugGUIWrapper.m
:
@@ -194,7 +194,7 @@
void GUIWrapperClearMensajes(void *myObjectInstance)
void GUIWrapperMuestraMensaje(void *myObjectInstance, char *parameter)
Parchis Include: Declares methods to callback with Objective-C++.
-
void saveObjCObject(void *objectiveCObject)
Definition: PDebug.cpp:208
+
void saveObjCObject(void *objectiveCObject)
Definition: PDebug.cpp:215

Constructor & Destructor Documentation