MCPcopy Create free account
hub / github.com/Illation/ETEngine / GetPath

Method GetPath

Engine/source/EtCore/FileSystem/Entry.cpp:66–76  ·  view source on GitHub ↗

--------------------------------- Entry::GetPath Get the path of an entry, recursively stepping up the parent list

Source from the content-addressed store, hash-verified

64// Get the path of an entry, recursively stepping up the parent list
65//
66std::string Entry::GetPath() const
67{
68 if (m_Parent)
69 {
70 return std::string(m_Parent->GetPath() + m_Parent->GetNameOnly() + m_Path);
71 }
72 else
73 {
74 return m_Path;
75 }
76}
77
78//---------------------------------
79// Entry::GetName

Callers 9

GetLoadDataMethod · 0.80
MergeMethod · 0.80
GetFileNameMethod · 0.80
InitMethod · 0.80
AddPackageToWriterFunction · 0.80
CookCompiledPackageFunction · 0.80
CookFilePackagesFunction · 0.80
GLTFTest.cppFile · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected