blob: 7ac0cec68bda72ed6df9cd7e7ef4270b309b439a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
// Copyright 2022-2023 Gabriel Bjørnager Jensen.
#include <bow/server.hxx>
#include <atomic>
::bow::ServerInstance::ServerInstance(::std::atomic_flag* stop_flag) noexcept {
this->stop_flag = stop_flag;
}
|