Code-completion for c++0x classes in Qt Creator
-
Hello
Living without code-completion is pretty hard for me. I want Qt Creator to auto-complete codes of the new C++, specially std::thread class... what should I do?
Generally I would like to add new code-completion indexes (say a third-party library) to Qt Creator (if possible, without re-compiling).
I'm using Qt 4.7.4 with Qt Creator 2.4.0 on Ubuntu 11.10
-
Qt Creator does not use code completion indexes. It parses the code and headers it includes and generates the data from there. So there is no way to manually add indexes.
Unfortunately our parser does not yet full support for C++0x (some small features are already supported), so that is why it skips most symbols that use it. It also is bad with templates in case you have not yet noticed.