ultimatepp/uppsrc/Core/Callback.cpp
mdelfede d2b54f7989 changed svn layout
git-svn-id: svn://ultimatepp.org/upp/trunk@281 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2008-06-07 22:31:27 +00:00

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