SW Task Event Loop Framework v1.0.0
High-performance C++ asynchronous event loop framework with timer management and promise-based programming
Loading...
Searching...
No Matches
Refbase.h
Go to the documentation of this file.
1#include <iostream>
2#include <string>
3
4#pragma once
5
6namespace swt {
7
8class RefBase
9{
10public:
11 int id;
12 std::string method;
13};
14
15} // namespace swt
std::string method
Definition Refbase.h:12
Software Timer namespace containing all timer-related classes.
Definition Awaitable.h:21