#include "ICrystalObject.h"#include "Collections/ICrystalSmartArray.h"Go to the source code of this file.
Classes | |
| class | IAction |
| class | CActionCallback< T > |
Defines | |
| #define | DEFINE_ACTION_CALLBACK(Type, Method) |
| #define | ACTION_CALLBACK(Type, Instance, Method) CAction##Type##Method##CallBack(Instance) |
Typedefs | |
| typedef Var< IAction, 1411 > | VAction |
| typedef VCrystalSmartTypedArray< VAction > | VActions |
|
|
|
|
|
Value: class CAction##Type##Method##CallBack : implements(IAction) \ { \ protected: \ Type *m_pInstance; \ public: \ CAction##Type##Method##CallBack(Type *pInstance) { m_pInstance = pInstance; } \ XRESULT CCT Execute(ICrystalEvent *pEvent) { return m_pInstance->Method(pEvent); } \ }; |
|
|
|
|
|
|
1.4.5