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

19 lines
298 B
C++

#ifndef jk_COMMONS_HPP
#define jk_COMMONS_HPP
#include <cassert>
#include <functional>
#include <optional>
#include <iostream>
#include <vector>
#include <unordered_map>
#include <memory>
#include <string>
#include <sstream>
#include <fstream>
#include <filesystem>
#include "mutils.hpp"
#endif