Enum SymbolType
Defined in File graph.hpp
Enum Documentation
-
enum class da4cpp::graph::SymbolType : std::uint8_t
Enumeration of different types of symbols in the dependency graph.
Values:
-
enumerator FunctionDefinition
A function definition with an implementation.
-
enumerator FunctionDeclaration
A function declaration without an implementation.
-
enumerator TypeDeclaration
A forward declaration of a type (e.g., struct or class).
-
enumerator TypeDefinition
A fully defined type (e.g., struct or class).
-
enumerator VariableDeclaration
A variable declaration without initialization.
-
enumerator VariableDefinition
A variable definition with memory allocated or initialized.
-
enumerator FunctionDefinition