23 lines
376 B
C++
23 lines
376 B
C++
#pragma once
|
|
#include "Fibers/JobQueue.h"
|
|
|
|
namespace Seele
|
|
{
|
|
struct GlobalFixture
|
|
{
|
|
GlobalFixture()
|
|
{
|
|
}
|
|
~GlobalFixture()
|
|
{
|
|
}
|
|
void setup()
|
|
{
|
|
//Fibers::JobQueue::initJobQueues();
|
|
}
|
|
void teardown()
|
|
{
|
|
//Fibers::JobQueue::cleanupJobQueues();
|
|
}
|
|
};
|
|
}; |