fixed bug in attaching nics to hosts, changed documentation format and generator (buggy but usable)

This commit is contained in:
2025-09-14 00:40:53 -04:00
parent 9ab64e18a4
commit c4141cd683
40 changed files with 5223 additions and 577 deletions

View File

@@ -1,13 +1,13 @@
# core/timer.h
## class Timer — public interface
### `Timer() { ... }`
### `init();`
### `void init() noexcept { ... }`
### `_start = clock::now();`
### `Time start() const noexcept { ... }`
### `auto tp = _start.time_since_epoch();`
### `Time now() const noexcept { ... }`
### `auto tp = clock::now().time_since_epoch();`
### `Time elapsed() const noexcept { ... }`
## `Timer::Timer`
`Timer()`
## `Timer::elapsed`
`Time elapsed() const noexcept`
## `Timer::init`
`void init() noexcept`
## `Timer::now`
`Time now() const noexcept`
## `Timer::start`
`Time start() const noexcept`
## `dofs::init`
`void init() noexcept{`