mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 03:02:30 +00:00
17 lines
388 B
C++
17 lines
388 B
C++
|
|
#ifndef ASYNC_C_ASYNC_QUEUE_HPP
|
||
|
|
#define ASYNC_C_ASYNC_QUEUE_HPP
|
||
|
|
|
||
|
|
#include "async/CAsyncObject.hpp"
|
||
|
|
#include <cstdint>
|
||
|
|
#include <storm/List.hpp>
|
||
|
|
|
||
|
|
class CAsyncQueue : public TSLinkedNode<CAsyncQueue> {
|
||
|
|
public:
|
||
|
|
// Member variables
|
||
|
|
STORM_EXPLICIT_LIST(CAsyncObject, link) readList;
|
||
|
|
STORM_EXPLICIT_LIST(CAsyncObject, link) list14;
|
||
|
|
int32_t int20;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|