7
votes
10answers
1k views
Is it possible to subclass a C struct in C++ and use pointers to the struct in C code?
Is there a side effect in doing this:
C code:
struct foo {
int k;
};
int ret_foo(const struct foo* f){
return f.k;
}
C++ code:
…
21
votes
16answers
4k views
Is there a simple script to convert C++ enum to string?
Suppose we have some named enums:
enum MyEnum {
FOO,
BAR = 0x50
};
What I googled for is a script (any language) that scans all the headers in my proje …
1
vote
3answers
340 views
Creating an object in shared memory inside a Shared Lib (so) in C++
Is it possible to share a single 'god' instance among everyone that links to this code, to be placed in a shared object?
god* _god = NULL;
extern "C"
{
int set_log_level(int level …
0
votes
3answers
686 views
How to develop a DirectFB app without leaving X.11 environment.
Hi folks,
I'm trying to develop a GUI application for an embedded platform, without any windowing whatsoever and I'm doing that with DirectFB, and it suits my needs very fine.
Since …
5
votes
io_service , why and how is it used
Asio's io_service is the facilitator for operating on asynchronous functions. Once a async operation is ready, it uses one of io_service's running threads to call you back …
1
vote
Updating Boost Wave from SVN
Well, you can check the logs and see the exact revision that the issue was fixed, diff only yhat revision and manually apply the patch.
It is not recommended that you only updated one compo …
3
votes
Qt and serial port programming
Well, there's always Boost.
In Boost there is a great Async I/O library called …
