[SOLVED] created symlinks from /usr/lib/lib/* to /usr/lib* [UPDATE 3] NEW VERSION: Ok, I think I fixed something
I\'m curre开发者_高级运维ntly using the ICU library to handle Unicode data, and am trying to send a UnicodeString over a socket. Currently looking at the example using a basic time server:
i have the following Problem. I started to use the boost library version 1.40, for unit testing. Since some other people working on the project and not all of them are using eclipse, the program has
I have application.so on Aix 5.3 and gcc 4.2.4. Application.so uses boost:asio. There is example.c which does dlopen and dlclose for application.so. However, when example.c exits - I get a core dump.
I want to get year-month-day hour:minute:second.fract开发者_C百科ion(2 digits), if I use \"%Y-%m-%d %H:%M:%S.%f\", I got almost what I want exception for the fraction( last part ) of seconds, it\'s sh
class temp { boost::mutex mx; void CriticalCo开发者_JAVA百科de() { boost::mutex::scoped_lock scoped_lock(mx);
I have the following templated class structure struct TraitA{}; struct TraitB{}; template<typename trait>
class MyClass { public: void PushMessage(MyMessage m) // Thread 1 calls this 开发者_Go百科{ boost::mutex::scoped_lock lock(mMutex);
I am writing a parser for quite complicated config files that make use of indentation etc. I decided to use Lex to break input into tokens as it seems to make life easier. The problem is that I cannot
I was looking for a solution to store program settings or options or configuration in C++.These could be settings that are exposed in a GUI and need to be saved between runs of my code.