aboutsummaryrefslogtreecommitdiff
path: root/src/ui/controls/NoChildControl.cpp
blob: 382a5d183942c5097e9c9834dcd0bcc3f6dd23c0 (plain)
1
2
3
4
5
6
7
8
9
10
#include "cru/ui/controls/NoChildControl.h"

namespace cru::ui::controls {
void NoChildControl::ForEachChild(
    const std::function<void(Control*)>& callback) {
  CRU_UNUSED(callback);
}

void NoChildControl::RemoveChild(Control* child) { CRU_UNUSED(child); }
}  // namespace cru::ui::controls