mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03: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
|