I have a generic C++ project in QTCreator, it is going well however I cannot see / browse the project as classes. Till now I have just used the the project view.

But now I am really missing the class browsing capability.

I am running

Qt Creator 3.4.1 (opensource)
Based on Qt 5.4.2 (Clang 6.0 (Apple), 64 bit)

I would not think this would be disabled in the opensource mode.... Is there something I basic I need to do to get this view Up and runnning.

My Qbs file looks like this
import qbs
CppApplication {
type: "application" // To suppress bundle generation on Mac
consoleApplication: true
Depends { name: "cpp" }
cpp.cppFlags: "-std=c++11"
cpp.includePaths: ["/Users/gavan1/include"]
files: [
"main.cpp",
"mapio.cpp",
"mapio.h",
... a lot more files here....
"reader.cpp",
"reader.h",
"writer.cpp",
"writer.h",
]

Group { // Properties for the produced executable
fileTagsFilter: product.type
qbs.install: true
}
}