1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/******************************************************************************
* This file is part of libome *
* Copyright (C) 2025 Arnd Behring, Kay Schoenwald *
* SPDX-License-Identifier: GPL-3.0-or-later *
******************************************************************************/
/**
* \file
* \brief Main header for libome
*
* \details
* This header includes all necessary further headers to use the library.
* It works for both C and C++. If it is included from C sources, only the
* C interface will be exposed.
*/
#ifndef LIBOME_OME_H
#define LIBOME_OME_H
#ifdef __cplusplus
#include <ome/ome_type_aliases.h>
#include <ome/mellin.h>
#include <ome/integration_engine_gsl.h>
#endif
#include <ome/AqqQNSEven.h>
#include <ome/AqqQNSOdd.h>
#include <ome/AQqPS.h>
#include <ome/AQqPSs.h>
#include <ome/AqqQPS.h>
#include <ome/AqgQ.h>
#include <ome/AgqQ.h>
#include <ome/AggQ.h>
#include <ome/AQg.h>
#include <ome/polAqqQNSEven.h>
#include <ome/polAqqQNSOdd.h>
#include <ome/polAQqPS.h>
#include <ome/polAQqPSs.h>
#include <ome/polAqqQPS.h>
#include <ome/polAqgQ.h>
#include <ome/polAgqQ.h>
#include <ome/polAggQ.h>
#include <ome/polAQg.h>
#endif