#include "gutsConventions.h"
#include <mutex>
#include <iostream>
Go to the source code of this file.
◆ gexit()
This function is used to exit the program with a specific error code, ensuring any necessary cleanup or logging can occur before termination.
- Parameters
-
error | The error code to exit with. |
Definition at line 14 of file gutsConventions.cc.
◆ gLogClassConstruct()
void gLogClassConstruct |
( |
std::string |
className | ) |
|
- Parameters
-
className | The name of the class being constructed. |
Definition at line 24 of file gutsConventions.cc.
◆ gLogClassDestruct()
void gLogClassDestruct |
( |
std::string |
className | ) |
|
- Parameters
-
className | The name of the class being destructed. |
Definition at line 45 of file gutsConventions.cc.
◆ gLogCopyConstruct()
void gLogCopyConstruct |
( |
std::string |
className | ) |
|
- Parameters
-
className | The name of the class being copy-constructed. |
Definition at line 31 of file gutsConventions.cc.
◆ gLogMessage()
void gLogMessage |
( |
std::string |
message | ) |
|
This function logs a given message, typically used for debugging or informational purposes.
- Parameters
-
message | The message to be logged. |
Definition at line 51 of file gutsConventions.cc.
◆ gLogMoveConstruct()
void gLogMoveConstruct |
( |
std::string |
className | ) |
|
- Parameters
-
className | The name of the class being move-constructed. |
Definition at line 38 of file gutsConventions.cc.
◆ mu