22 lines
347 B
C++
22 lines
347 B
C++
#pragma once
|
|
|
|
namespace Seele
|
|
{
|
|
struct GlobalFixture
|
|
{
|
|
GlobalFixture()
|
|
{
|
|
}
|
|
~GlobalFixture()
|
|
{
|
|
}
|
|
void setup()
|
|
{
|
|
//Fibers::JobQueue::initJobQueues();
|
|
}
|
|
void teardown()
|
|
{
|
|
//Fibers::JobQueue::cleanupJobQueues();
|
|
}
|
|
};
|
|
}; |