top
|
up
|
prev
|
next
SourceFileDeclaration Class
Definition at line
63
of
Project.hpp
Constructors
SourceFileDeclaration
(
const
std::string& filePath_)
Member Functions
const
std::string&
FilePath
()
const
Member Variables
std::string
filePath
Constructor Details
SourceFileDeclaration Constructor
sngcm::ast::SourceFileDeclaration::SourceFileDeclaration(
const
std::string& filePath_)
Definition at line
105
of
Project.cpp
:
105
:
ProjectDeclaration
(
ProjectDeclarationType
::
sourceFileDeclaration
)
,
filePath
(
filePath_
)
106
{
107
}
Declaration at line
66
of
Project.hpp
Member Function Details
FilePath Member Function
const
std::string& sngcm::ast::SourceFileDeclaration::FilePath()
const
Definition at line
67
of
Project.hpp
:
67
{
return
filePath
;
}
Called by:
sngcm::ast::Project::ResolveDeclarations
top
|
up
|
prev
|
next