MolSSI Integral Reference Project
callback_helper.hpp
Go to the documentation of this file.
1 /*! \file
2  *
3  * \brief Aggregate header for callback helpers
4  */
5 
6 #pragma once
7 
8 namespace mirp {
9 
10 
11 /*! \brief Helps with calling callbacks with the given number of centers
12  *
13  * This structure is used to appropriately unpack arrays of data (of length \p N)
14  * when calling C-style callbacks.
15  *
16  * \tparam Number of centers
17  */
18 template<int N> struct callback_helper;
19 
20 } // close namespace mirp
21 
Helps with calling callbacks with the given number of centers.
Definition: callback_helper.hpp:18
Structures that help with calling callbacks.