blob: e482a7cbe9ff7af5b525a1f5b5b0f692b91cd0b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* File: core/includes.hpp
* Purpose: Core includes for the SOCL library.
* Author: Amlal El Mahrouss (founder@snu.systems)
* Copyright 2025, Amlal El Mahrouss and SNU Systems Corp.
*/
#pragma once
#include <boost/config.hpp>
#include <boost/core/nvp.hpp>
#include <boost/core/demangle.hpp>
#include <boost/core/null_deleter.hpp>
#include <memory>
#include <utility>
#include <filesystem>
|