Some cleanup

* removed audio utils from blackmiscfreefunctions (we wanna give it up)
* comments
* formatting
This commit is contained in:
Klaus Basan
2015-12-19 03:33:46 +01:00
parent 3ac32fa58e
commit 8aa449bc13
11 changed files with 67 additions and 46 deletions

View File

@@ -53,11 +53,11 @@ namespace BlackGui
bool m_enabled = true;
};
//! Model filter interface for those who can generate such a filter (e.g. a widget dialog)
//! Model filter interface for those who can generate such a filter (e.g. a widget or dialog)
template<class ContainerType> class IModelFilterProvider
{
public:
//! Get the filter
//! Get the filter, this is the filter itself, not its widget or dialog
virtual std::unique_ptr<IModelFilter<ContainerType>> createModelFilter() const = 0;
};