Search Results

0
votes
2answers
418 views

What is the simplest RTTI implementation for C++?

I'm trying to implement exception handling for an embedded OS and I'm stuck at how to detect the type of the thrown "exception" (to select the appropriate handler). The saving and restoring …
0
votes
5answers
737 views

How to generate random variable names in C++ using macros?

I'm creating a macro in C++ that declares a variable and assigns some value to it. Depending on how the macro is used, the second occurrence of the macro can override the value of the first variabl …
0
votes
3answers
82 views

Is it possible to treat macro’s arguments as regular expressions?

Suppose I have a C++ macro CATCH to replace the catch statement and that macro receive as parameter a variable-declaration regular expression, like <type_name> [*] <var_name> …
0
votes
9answers
409 views

Convert struct to unsigned char *

How can I convert the following struct to unsigned char*? typedef struct { unsigned char uc1; unsigned char uc2; unsigned char uc3; unsigne …
1
vote
2answers
297 views

Serial programming (hardware handshake)

I'm trying to to program a serial communication using hardware handshake in linux using C/C++. The signals that implement the handshake are CTS (Clear to send) and RTS (Request to send). Currently …
0
votes

Most beautiful open source software written in c++

Tou should take a look at the source code of NetBSD. It's really clear and well documented. …
0
votes

How do I *not* delete a member in a destructor?

If you have dynamically allocated memory for this member it is possible once you have shared the reference to this member before destroying the object and if you ensure the member is not destroyed …
0
votes

How do you farm out variables to persistent data?

You decide the format of the .ini file of your application. I usually work with XML because then you can organize your information by scope and there is already a bunch of libs to handle storing an …