News

Hi all<P>I'm writing a library in C++ and I would like to use namespaces, as it is suggested. But I'm having some problems.<P>First, I've created all my header and source files without any namespace.
mbed.h has "using namespace std" and "using namespace mbed" . Just spent a bunch of time debugging something b/c I had no idea my namespace had gotten clobbered. Putting using declarations in a header ...
When I try to compile some of my programs with classes that make use of the C++ standard library I am getting this error:'std' : does not exist or is not a namespaceHere's some sample code that's ...
When Calling libcron::Cron::tick from another thread than add_schedule, clear_schedule and remove_schedule, one must take care to protect the internal resources of libcron::Cron so that tasks are not ...