mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2026-02-04 17:19:09 +00:00
chore: initial commit
This commit is contained in:
commit
70b00c5c38
965 changed files with 264882 additions and 0 deletions
19
src/async/CAsyncThread.hpp
Normal file
19
src/async/CAsyncThread.hpp
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
#ifndef ASYNC_C_ASYNC_THREAD_HPP
|
||||
#define ASYNC_C_ASYNC_THREAD_HPP
|
||||
|
||||
#include <cstdint>
|
||||
#include <storm/List.hpp>
|
||||
#include <storm/Thread.hpp>
|
||||
|
||||
class CAsyncObject;
|
||||
class CAsyncQueue;
|
||||
|
||||
class CAsyncThread : public TSLinkedNode<CAsyncThread> {
|
||||
public:
|
||||
// Member variables
|
||||
SThread thread;
|
||||
CAsyncQueue* queue;
|
||||
CAsyncObject* currentObject;
|
||||
};
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue