30 lines
513 B
Plaintext
30 lines
513 B
Plaintext
// License: Modified MIT (NON-AI)
|
|
// See the LICENSE file in the root directory for license information.
|
|
// Copyright 2025 Timothy Prepscius
|
|
|
|
#define USE_PRECOMPILED_HEADERS
|
|
#ifdef USE_PRECOMPILED_HEADERS
|
|
|
|
#include <iostream>
|
|
#include <sstream>
|
|
|
|
#include <string>
|
|
#include <string_view>
|
|
|
|
#include <list>
|
|
#include <map>
|
|
#include <vector>
|
|
|
|
#include <mutex>
|
|
#include <shared_mutex>
|
|
#include <condition_variable>
|
|
#include <thread>
|
|
|
|
#include <algorithm>
|
|
|
|
#include <memory>
|
|
#include <functional>
|
|
|
|
#endif
|
|
|