top
|
up
|
prev
|
next
ResourceFileDeclaration Class
Definition at line
72
of
Project.hpp
Constructors
ResourceFileDeclaration
(
const
std::string& filePath_)
Member Functions
const
std::string&
FilePath
()
const
Member Variables
std::string
filePath
Constructor Details
ResourceFileDeclaration Constructor
sngcm::ast::ResourceFileDeclaration::ResourceFileDeclaration(
const
std::string& filePath_)
Definition at line
109
of
Project.cpp
:
109
:
ProjectDeclaration
(
ProjectDeclarationType
::
resourceFileDeclaration
)
,
filePath
(
filePath_
)
110
{
111
}
Declaration at line
75
of
Project.hpp
Member Function Details
FilePath Member Function
const
std::string& sngcm::ast::ResourceFileDeclaration::FilePath()
const
Definition at line
76
of
Project.hpp
:
76
{
return
filePath
;
}
Called by:
sngcm::ast::Project::ResolveDeclarations
top
|
up
|
prev
|
next