top
|
up
|
prev
| next
ProjectHeaderFileSet Class
Definition at line
25
of
File.hpp
Member Functions
void
AddProjectHeaderFile
(
const
std::string& headerFilePath)
bool
IsProjectHeaderFile
(
const
std::string& headerFilePath)
const
Member Variables
std::set<std::string>
headerFileSet
Member Function Details
AddProjectHeaderFile Member Function
void
sngcpp::pp::ProjectHeaderFileSet::AddProjectHeaderFile(
const
std::string& headerFilePath)
Definition at line
18
of
File.cpp
:
19
{
20
headerFileSet
.
insert
(
headerFilePath
)
;
21
}
Declaration at line
28
of
File.hpp
IsProjectHeaderFile Member Function
bool
sngcpp::pp::ProjectHeaderFileSet::IsProjectHeaderFile(
const
std::string& headerFilePath)
const
Definition at line
23
of
File.cpp
:
24
{
25
return
headerFileSet
.
find
(
headerFilePath
)
!=
headerFileSet
.
cend
(
)
;
26
}
Declaration at line
29
of
File.hpp
Called by:
sngcpp::pp::PP::IsProjectHeaderFile
top
|
up
|
prev
| next