MCPcopy Create free account
hub / github.com/BeneficialCode/WinArk / RemoveFilter

Method RemoveFilter

WinArk/FilterConfiguration.cpp:22–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20}
21
22bool FilterConfiguration::RemoveFilter(int index) {
23 if (index < 0 || index >= _filters.size())
24 return false;
25
26 _filters.erase(_filters.begin() + index);
27 return true;
28}
29
30FilterDescription* FilterConfiguration::GetFilter(int index) {
31 if (index < 0 || index >= _filters.size())

Callers

nothing calls this directly

Calls 2

sizeMethod · 0.45
beginMethod · 0.45

Tested by

no test coverage detected