diff options
Diffstat (limited to 'src/ui/controls/NoChildControl.cpp')
-rw-r--r-- | src/ui/controls/NoChildControl.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/ui/controls/NoChildControl.cpp b/src/ui/controls/NoChildControl.cpp index 29177828..4a9002ed 100644 --- a/src/ui/controls/NoChildControl.cpp +++ b/src/ui/controls/NoChildControl.cpp @@ -1,3 +1,8 @@ #include "cru/ui/controls/NoChildControl.h" -namespace cru::ui::controls {} +namespace cru::ui::controls { +void NoChildControl::ForEachChild( + const std::function<void(Control*)>& callback) { + CRU_UNUSED(callback); +} +} // namespace cru::ui::controls |