mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-22 23:55:08 +00:00
28 lines
496 B
C++
28 lines
496 B
C++
class IFoo {
|
|
virtual void foo() = 0 {}
|
|
};
|
|
|
|
/*
|
|
OUTPUT:
|
|
{
|
|
"types": [{
|
|
"id": 0,
|
|
"usr": "c:@S@IFoo",
|
|
"short_name": "IFoo",
|
|
"qualified_name": "IFoo",
|
|
"definition": "1:1:7",
|
|
"funcs": [0],
|
|
"uses": ["1:1:7"]
|
|
}],
|
|
"functions": [{
|
|
"id": 0,
|
|
"usr": "c:@S@IFoo@F@foo#",
|
|
"short_name": "foo",
|
|
"qualified_name": "IFoo::foo",
|
|
"definition": "1:2:16",
|
|
"declaring_type": 0,
|
|
"uses": ["1:2:16"]
|
|
}],
|
|
"variables": []
|
|
}
|
|
*/ |