refactor: move around some code

This commit is contained in:
2023-09-10 01:13:25 +04:00
parent de37b814bf
commit d7dd36ccd1
4 changed files with 12 additions and 15 deletions

View File

@@ -22,4 +22,8 @@ struct FilterFactory {
}
return newFilter;
}
static Filter* GetDefaultFilter() {
return new LowPassFilter();
}
};