Started over.

This commit is contained in:
crs
2001-10-06 14:13:28 +00:00
parent 27ead1f713
commit ff81f708e2
132 changed files with 7634 additions and 3960 deletions

19
base/CFunctionJob.cpp Normal file
View File

@@ -0,0 +1,19 @@
#include "CFunctionJob.h"
//
// CFunctionJob
//
CFunctionJob::CFunctionJob(void (*func)(void*), void* arg) :
m_func(func),
m_arg(arg)
{
// do nothing
}
void CFunctionJob::run()
{
if (m_func != NULL) {
m_func(m_arg);
}
}