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.
17 lines
329 B
C++
17 lines
329 B
C++
#ifndef PARSE_VARIABLE_H
|
|
#define PARSE_VARIABLE_H
|
|
|
|
#include <string>
|
|
|
|
struct ParseVariable
|
|
{
|
|
ParseVariable(const std::string& typeName, const std::string& fullName, bool isConst, bool isStatic);
|
|
|
|
const std::string typeName;
|
|
const std::string fullName;
|
|
const bool isConst;
|
|
const bool isStatic;
|
|
};
|
|
|
|
#endif // PARSE_VARIABLE_H
|