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

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