forked from qt-creator/qt-creator
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>
14 lines
187 B
C++
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;
|