This repository has been archived on 2023-09-10. You can view files and clone it, but cannot push or open issues/pull-requests.
joko/lib/commons.hpp

20 lines
320 B
C++
Raw Normal View History

2023-09-09 11:02:52 +00:00
#ifndef jk_COMMONS_HPP
#define jk_COMMONS_HPP
2023-09-09 13:09:43 +00:00
#include <cassert>
#include <functional>
#include <optional>
#include <iostream>
#include <vector>
#include <unordered_map>
#include <memory>
#include <string>
#include <sstream>
#include <fstream>
#include <filesystem>
2023-09-09 11:02:52 +00:00
#include "mutils.hpp"
2023-09-09 22:03:28 +00:00
#include "config.hpp"
2023-09-09 11:02:52 +00:00
#endif