ucommon
7.0.0
About: GNU uCommon C++ is a portable and optimized class framework for writing C++ applications that need to use threads and support concurrent synchronization, and that use sockets, XML parsing, object serialization, thread-optimized string and data structure classes, etc..
![]() ![]() |
#include <ucommon/platform.h>
#include <ucommon/protocols.h>
#include <ucommon/thread.h>
#include <ucommon/string.h>
#include <ucommon/memory.h>
#include <ucommon/fsys.h>
#include <cstdlib>
#include <cstring>
#include <stdexcept>
Go to the source code of this file.
Classes | |
class | ucommon::temporary< T > |
class | ucommon::temporary< char * > |
class | ucommon::temporary< uint8_t * > |
Namespaces | |
ucommon | |
Macros | |
#define | THROW(x) throw x |
#define | THROWS(x) throw(x) |
#define | THROWS_ANY throw() |
Temporary templates for C++. This offers automatic management of heap temporary objects.
Definition in file temporary.h.
#define THROW | ( | x | ) | throw x |
Definition at line 57 of file temporary.h.
#define THROWS | ( | x | ) | throw(x) |
Definition at line 58 of file temporary.h.
#define THROWS_ANY throw() |
Definition at line 59 of file temporary.h.