c++ Programming Glossary: www.boost.org
CSV parser in C++ http://stackoverflow.com/questions/1120140/csv-parser-in-c I found this article which looks quite promising http www.boost.org doc libs 1_35_0 libs spirit example fundamental list_parser.cpp..
Very poor boost::lexical_cast performance http://stackoverflow.com/questions/1250795/very-poor-boostlexical-cast-performance about lexical_cast's performance providing a link http www.boost.org doc libs 1_49_0 doc html boost_lexical_cast performance.html..
Is there a standard date/time class in C++? http://stackoverflow.com/questions/1650715/is-there-a-standard-date-time-class-in-c the way of using boost date . Here are some examples http www.boost.org doc libs 1_55_0 doc html date_time date_time_io.html#date_time.io_tutorial..
C++: do you (really) write exception safe code? [closed] http://stackoverflow.com/questions/1853243/c-do-you-really-write-exception-safe-code his experience about making the STL exception safe http www.boost.org community exception_safety.html Look at the 7th point Automated..
Boost random number generator http://stackoverflow.com/questions/2254909/boost-random-number-generator This code is adapted from the boost manual at http www.boost.org doc libs 1_42_0 libs random index.html #include iostream #include..
Which C++ graph library should I use? [closed] http://stackoverflow.com/questions/2751826/which-c-graph-library-should-i-use Graphviz http www.graphviz.org Boost Graph Library http www.boost.org doc libs 1_42_0 libs graph doc index.html Lemon http lemon.cs.elte.hu..
Biased Random Number Generator http://stackoverflow.com/questions/2775578/biased-random-number-generator for your generator. It's a great library see http www.boost.org doc libs 1_42_0 libs random index.html . share improve this..
Determine if Type is a pointer in a template function http://stackoverflow.com/questions/301330/determine-if-type-is-a-pointer-in-a-template-function however use boost for this it includes that too http www.boost.org doc libs 1_37_0 libs type_traits doc html boost_typetraits reference..
How do I get a list of files in a directory in C++? http://stackoverflow.com/questions/306533/how-do-i-get-a-list-of-files-in-a-directory-in-c a way to do this. But boost filesystem can do that http www.boost.org doc libs 1_37_0 libs filesystem example simple_ls.cpp share..
How to clear directory contents in c++ on Linux (basically, i want to do 'rm -rf <directorypath>/*' http://stackoverflow.com/questions/3184445/how-to-clear-directory-contents-in-c-on-linux-basically-i-want-to-do-rm-rf share improve this question Boost remove_all http www.boost.org doc libs 1_31_0 libs filesystem doc index.htm share improve..
Switching from Java to C++ - what's the easy way? [closed] http://stackoverflow.com/questions/403431/switching-from-java-to-c-whats-the-easy-way a typical Java Lib Take a look at the boost libraries http www.boost.org You will now realize that you didn't understand the true power..
Boost Thread tutorials [closed] http://stackoverflow.com/questions/415994/boost-thread-tutorials only links I found on the web were Boost 1.37 Threads http www.boost.org doc libs 1_37_0 doc html thread.html What's New in Boost Threads..
How to format a datetime to string using boost? http://stackoverflow.com/questions/5018188/how-to-format-a-datetime-to-string-using-boost links useful C Boost date with format dd mm yyyy http www.boost.org doc libs 1_35_0 doc html date_time date_time_io.html#date_time.time_facet..
Examples of “modern c++” in action? [closed] http://stackoverflow.com/questions/534311/examples-of-modern-c-in-action
Precompiled headers with GCC http://stackoverflow.com/questions/58841/precompiled-headers-with-gcc but not great. Note Here's the link to the example http www.boost.org doc libs 1_43_0 doc html xpressive user_s_guide.html#boost_xpressive.user_s_guide.examples..
C++ & Boost: encode/decode UTF-8 http://stackoverflow.com/questions/6140223/c-boost-encode-decode-utf-8 03 using boost code facet for reading utf8.html and http www.boost.org doc libs 1_46_0 libs serialization doc codecvt.html Trying to..
Check whether iterator belongs to a list http://stackoverflow.com/questions/6302706/check-whether-iterator-belongs-to-a-list their own operator . You could work around this e.g. http www.boost.org doc libs 1_42_0 libs utility utility.htm#addressof Martin's..
Variable Sized Struct C++ http://stackoverflow.com/questions/688471/variable-sized-struct-c in. Alternatively boost contains a fixed size array http www.boost.org doc libs 1_38_0 doc html array.html share improve this answer..
How to delete a folder in C++ http://stackoverflow.com/questions/734717/how-to-delete-a-folder-in-c question I strongly advise to use Boost.FileSystem. http www.boost.org doc libs 1_38_0 libs filesystem doc index.htm In your case that..
Check if a class has a member function of a given signature http://stackoverflow.com/questions/87372/check-if-a-class-has-a-member-function-of-a-given-signature I was surprised of what they did in documentation http www.boost.org doc libs 1_36_0 libs serialization doc index.html why open the..
|