Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
please sonar using C++11 constructs
[simgrid.git] / include / xbt / function_types.h
1 /* function_type.h - classical types for pointer to function                */
2
3 /* Copyright (c) 2006-2007, 2009-2010, 2012-2015. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #ifndef XBT_FUNCTION_TYPE_H
10 #define XBT_FUNCTION_TYPE_H
11
12 #include "xbt/base.h"
13
14 SG_BEGIN_DECL()
15
16 typedef void (*void_f_ppvoid_t) (void **);
17 typedef void (*void_f_pvoid_t) (void *);
18 typedef void (*void_f_int_pvoid_t) (int, void *);
19 typedef void *(*pvoid_f_void_t) (void);
20 typedef void *(*pvoid_f_pvoid_t) (void *);
21 typedef void (*void_f_void_t) (void);
22
23 typedef int (*int_f_void_t) (void);
24 typedef int (*int_f_pvoid_t) (void*);
25
26 typedef int (*int_f_pvoid_pvoid_t) (void *, void *);
27 typedef int (*int_f_cpvoid_cpvoid_t) (const void *, const void *);
28
29 typedef int (*xbt_main_func_t) (int argc, char *argv[]);
30
31 typedef double(*double_f_pvoid_t) (void *);
32 typedef double(*double_f_cpvoid_t) (const void *);
33
34 SG_END_DECL()
35 #endif                          /* XBT_FUNCTION_TYPE_H */