mirror of
https://github.com/celisej567/abaddon.git
synced 2026-09-13 20:18:50 +03:00
initial sqlite, store user
This commit is contained in:
10
util.hpp
10
util.hpp
@@ -11,6 +11,16 @@
|
||||
#include <regex>
|
||||
#include <mutex>
|
||||
#include <condition_variable>
|
||||
#include <optional>
|
||||
#include <type_traits>
|
||||
|
||||
namespace util {
|
||||
template<typename T>
|
||||
struct is_optional : ::std::false_type {};
|
||||
|
||||
template<typename T>
|
||||
struct is_optional<::std::optional<T>> : ::std::true_type {};
|
||||
}
|
||||
|
||||
class Semaphore {
|
||||
public:
|
||||
|
||||
Reference in New Issue
Block a user