22 lines
280 B
C++
22 lines
280 B
C++
|
#pragma execution_character_set("utf-8")
|
||
|
#include "MenuToolUIFunction.h"
|
||
|
#include "Logger.h"
|
||
|
|
||
|
#define BIND(func) std::bind(&MenuToolUIFunction::func, this, std::placeholders::_1)
|
||
|
|
||
|
MenuToolUIFunction::MenuToolUIFunction()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
MenuToolUIFunction::~MenuToolUIFunction()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|