#include <functional>

void Naming(){}
 
int main()
{
	std::function<void()> Comand_Function;
	Comand_Function = Naming;
	return 0;	
}