top
|
up
|
prev
|
next
ReferenceDeclaration Class
Definition at line
54
of
Project.hpp
Constructors
ReferenceDeclaration
(
const
std::string& filePath_)
Member Functions
const
std::string&
FilePath
()
const
Member Variables
std::string
filePath
Constructor Details
ReferenceDeclaration Constructor
sngcm::ast::ReferenceDeclaration::ReferenceDeclaration(
const
std::string& filePath_)
Definition at line
101
of
Project.cpp
:
101
:
ProjectDeclaration
(
ProjectDeclarationType
::
referenceDeclaration
)
,
filePath
(
filePath_
)
102
{
103
}
Declaration at line
57
of
Project.hpp
Member Function Details
FilePath Member Function
const
std::string& sngcm::ast::ReferenceDeclaration::FilePath()
const
Definition at line
58
of
Project.hpp
:
58
{
return
filePath
;
}
Called by:
sngcm::ast::Project::ResolveDeclarations
top
|
up
|
prev
|
next