Initial commit: client source
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
#pragma once
|
||||
|
||||
template<typename T>
|
||||
class CFuncObject
|
||||
{
|
||||
public:
|
||||
CFuncObject()
|
||||
{
|
||||
Clear();
|
||||
}
|
||||
|
||||
virtual ~CFuncObject()
|
||||
{
|
||||
}
|
||||
|
||||
void Clear()
|
||||
{
|
||||
m_pSelfObject = NULL;
|
||||
m_pFuncObject = NULL;
|
||||
}
|
||||
|
||||
void Set(T* pSelfObject, void (T::*pFuncObject)())
|
||||
{
|
||||
m_pSelfObject = pSelfObject;
|
||||
m_pFuncObject = pFuncObject;
|
||||
}
|
||||
|
||||
bool IsEmpty()
|
||||
{
|
||||
if (m_pSelfObject != NULL)
|
||||
return false;
|
||||
|
||||
if (m_pFuncObject != NULL)
|
||||
return false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
void Run()
|
||||
{
|
||||
if (m_pSelfObject)
|
||||
if (m_pFuncObject)
|
||||
(m_pSelfObject->*m_pFuncObject)();
|
||||
}
|
||||
|
||||
protected:
|
||||
T * m_pSelfObject;
|
||||
void (T::*m_pFuncObject) ();
|
||||
};
|
||||
Reference in New Issue
Block a user