mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
19 lines
288 B
C++
19 lines
288 B
C++
#include "Core.h"
|
|
|
|
NAMESPACE_UPP
|
|
|
|
//#BLITZ_APPROVE
|
|
#define CPP_PART__
|
|
#include "Cbgen.h"
|
|
|
|
void Callback::Execute() const
|
|
{
|
|
if(action) action->Execute();
|
|
}
|
|
|
|
bool Gate::Execute() const
|
|
{
|
|
return (void *)action == (void *)1 ? true : action ? action->Execute() : false;
|
|
}
|
|
|
|
END_UPP_NAMESPACE
|