2020-10-19 23:21:40 +08:00
|
|
|
|
2020-10-21 10:12:00 +08:00
|
|
|
#include "WidgetCallBackHandlerProtocol.h"
|
2020-10-19 23:21:40 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
namespace cocostudio
|
|
|
|
{
|
|
|
|
WidgetCallBackHandlerProtocol::~WidgetCallBackHandlerProtocol() {}
|
2022-07-11 17:50:21 +08:00
|
|
|
axis::ui::Widget::ccWidgetTouchCallback WidgetCallBackHandlerProtocol::onLocateTouchCallback(std::string_view)
|
2021-12-25 10:04:45 +08:00
|
|
|
{
|
|
|
|
return nullptr;
|
2020-10-19 23:21:40 +08:00
|
|
|
}
|
2022-07-11 17:50:21 +08:00
|
|
|
axis::ui::Widget::ccWidgetClickCallback WidgetCallBackHandlerProtocol::onLocateClickCallback(std::string_view)
|
2021-12-25 10:04:45 +08:00
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
2022-07-11 17:50:21 +08:00
|
|
|
axis::ui::Widget::ccWidgetEventCallback WidgetCallBackHandlerProtocol::onLocateEventCallback(std::string_view)
|
2021-12-25 10:04:45 +08:00
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
} // namespace cocostudio
|