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
|
// SPDX-License-Identifier: LGPL-3.0-or-later
// Author: Kristian Lytje
#pragma once
#include <api/pyausaxs/api_data.h>
#include <api/pyausaxs/api_fit.h>
#include <api/pyausaxs/api_iterative_fit.h>
#include <api/pyausaxs/api_molecule.h>
#include <api/pyausaxs/api_pdb.h>
// extern "C" API int map_read(
// const char* filename,
// int* status
// );
// extern "C" API void map_get_slice(
// int map_id,
// double z_position,
// double** slice_data,
// int* width, int* height,
// int* status
// );
// extern "C" API int map_fit(
// int map_id, int data_id,
// int* status
// );
|