summaryrefslogtreecommitdiff
path: root/Runtime/Threading/Job.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Runtime/Threading/Job.cpp')
-rw-r--r--Runtime/Threading/Job.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/Runtime/Threading/Job.cpp b/Runtime/Threading/Job.cpp
new file mode 100644
index 0000000..18794c5
--- /dev/null
+++ b/Runtime/Threading/Job.cpp
@@ -0,0 +1,13 @@
+#include "Job.h"
+#include "Runtime/Utilities/UIDGenerator.h"
+
+static UIDGenerator s_JobIDGenerator;
+
+Job::Job()
+ : m_ID(s_JobIDGenerator.GenUID())
+{
+}
+
+Job::~Job()
+{
+}