MCPcopy Create free account
hub / github.com/CppMicroServices/CppMicroServices / FindResources

Method FindResources

framework/src/bundle/Bundle.cpp:323–333  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

321 }
322
323 std::vector<BundleResource>
324 Bundle::FindResources(std::string const& path, std::string const& filePattern, bool recurse) const
325 {
326 if (!d)
327 {
328 throw std::invalid_argument("invalid bundle");
329 }
330
331 d->CheckUninstalled();
332 return d->barchive ? d->barchive->FindResources(path, filePattern, recurse) : std::vector<BundleResource>();
333 }
334
335 Bundle::TimeStamp
336 Bundle::GetLastModified() const

Callers 4

TEST_FFunction · 0.45
TEST_FFunction · 0.45
TESTFunction · 0.45
mainFunction · 0.45

Calls 1

CheckUninstalledMethod · 0.80

Tested by 3

TEST_FFunction · 0.36
TEST_FFunction · 0.36
TESTFunction · 0.36