Files
qt-creator/tests/unit/unittest/data/symbolscollector_symbolkind.cpp
Marco Bubke de4f6301e6 Clang: Process SymbolKind and SymbolTags with the indexer
We add the infrastructure to compute the SymbolKind and SymbolTags in the
indexer. Later we have to add more for templates, virtual functions etc..

Change-Id: I9203c5cfbfffed3065337292010de5fce5736453
Reviewed-by: Ivan Donchevskii <ivan.donchevskii@qt.io>
2018-03-27 14:45:58 +00:00

14 lines
187 B
C++

class Class {};
struct Struct {};
enum Enumeration {};
enum ScopedEnumeration {};
union Union {};
#ifdef _MSC_VER
__interface MsvcInterface {};
#endif
void Function() {}
int Variable;