data: Extended CxxParser to detect elements
Detects most elements in the code, currently classes, structs, global variables, fields, functions, methods, namespaces and enums. The structs ParseLocation and ParseVariable are helper objects to transmit information to the ParserClient. Currently the parsed information only gets logged in the Storage. review id = 15 fortune cookie message = In dreams and in life, nothing is impossible.
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
#include "data/parser/ParseLocation.h"
|
||||
|
||||
ParseLocation::ParseLocation(const std::string& file, unsigned int line, unsigned int column)
|
||||
: file(file)
|
||||
, line(line)
|
||||
, column(column)
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user