Exist an assistance program to find c++ topics 'by word' ?

Sometimes I need to look for a specific function.
for example 'write', and I'd want to have a help assistant (like windows help) to search across a full c++ reference.
Is there something like I want ?
I'm using QT ...
Thanks
Last edited on
Like some code completion tool? ( they are embedded with IDEs )
No, not completion.
I want some like MSDN, Imagine the help of cplusplus contained into a desktop help system.
Like typing 'bitset' and getting this http://www.cplusplus.com/reference/stl/bitset/ ?
Thanks Bazzy
Yes, something similar but without internet conexion.
Last edited on
The search bar pretty much does that now. If you put in, say, "bitset" into the search bar, it will have the reference page at the top. I don't know about getting a program to do it for you, though.

Edit: Oh, I see now. I don't know about any C++ references you could download, but they may exist.
Last edited on
You can get a program which saves a website on your desktop. There are many tools for this
Yeah you can do that with Microsoft Visual Studio 2010. You have to go to the help menu and enable the option for offline help and it puts the MSDN resources onto your computer. You can download from the internet or use the disc to get the resources for the offline help, I did it by disc when I had dial-up.
man
you will need this packages:
_manpages-dev (for C)
_libstdc++*-doc (for C++)
Last edited on
Topic archived. No new replies allowed.