24 lines
631 B
C
24 lines
631 B
C
|
#pragma once
|
||
|
//------------------------------------------------------------------------------
|
||
|
/**
|
||
|
@class Base::JobFuncDescBase
|
||
|
|
||
|
Platform-specific description of a Job function. This can be a simple
|
||
|
pointer to a function if the job system works with simple CPU threads,
|
||
|
or anything else.
|
||
|
|
||
|
(C) 2009 Radon Labs GmbH
|
||
|
*/
|
||
|
#include "core/types.h"
|
||
|
|
||
|
//------------------------------------------------------------------------------
|
||
|
namespace Base
|
||
|
{
|
||
|
class JobFuncDescBase
|
||
|
{
|
||
|
// empty, must be overriden in subclass
|
||
|
};
|
||
|
|
||
|
};
|
||
|
//------------------------------------------------------------------------------
|
||
|
|