top
|
up
|
prev
|
next
TextFileDeclaration Class
Definition at line
81
of
Project.hpp
Constructors
TextFileDeclaration
(
const
std::string& filePath_)
Member Functions
const
std::string&
FilePath
()
const
Member Variables
std::string
filePath
Constructor Details
TextFileDeclaration Constructor
sngcm::ast::TextFileDeclaration::TextFileDeclaration(
const
std::string& filePath_)
Definition at line
113
of
Project.cpp
:
113
:
ProjectDeclaration
(
ProjectDeclarationType
::
textFileDeclaration
)
,
filePath
(
filePath_
)
114
{
115
}
Declaration at line
84
of
Project.hpp
Member Function Details
FilePath Member Function
const
std::string& sngcm::ast::TextFileDeclaration::FilePath()
const
Definition at line
85
of
Project.hpp
:
85
{
return
filePath
;
}
Called by:
sngcm::ast::Project::ResolveDeclarations
top
|
up
|
prev
|
next