mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-03-22 17:54:33 -05:00
11 lines
235 B
C++
11 lines
235 B
C++
#pragma once
|
|
#include <memory>
|
|
|
|
namespace sys
|
|
{
|
|
// This is just for inheritance to pass stuff to task threads
|
|
struct taskData { };
|
|
// Makes stuff easier to type
|
|
using sharedTaskData = std::shared_ptr<sys::taskData>;
|
|
}
|