6e8fbca745
match the genesis editor version 1.3.0.653.
20 lines
603 B
C++
20 lines
603 B
C++
//------------------------------------------------------------------------------
|
|
// job.cc
|
|
// (C) 2009 Radon Labs GmbH
|
|
//------------------------------------------------------------------------------
|
|
#include "stdneb.h"
|
|
#include "jobs/job.h"
|
|
|
|
namespace Jobs
|
|
{
|
|
#if __PS3__
|
|
__ImplementClass(Jobs::Job, 'JOB_', PS3::PS3Job);
|
|
#elif (NEBULA3_USE_SERIAL_JOBSYSTEM || __WII__)
|
|
__ImplementClass(Jobs::Job, 'JOB_', Jobs::SerialJob);
|
|
#elif (__WIN32__ || __XBOX360__ || __ANDROID__ || __OSX__)
|
|
__ImplementClass(Jobs::Job, 'JOB_', Jobs::TPJob);
|
|
#else
|
|
#error "Jobs::Job not implemented on this platform!"
|
|
#endif
|
|
}
|