Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
SMPI cleanups: rename a symbol and remove unused parameters
[simgrid.git] / include / smpi / forward.hpp
1 /* Copyright (c) 2016. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SIMGRID_SMPI_FORWARD_HPP
7 #define SIMGRID_SMPI_FORWARD_HPP
8
9
10 #ifdef __cplusplus
11
12 #include <boost/intrusive_ptr.hpp>
13 namespace simgrid {
14 namespace smpi {
15
16 class Coll;
17 class Colls;
18 class Comm;
19 class Datatype;
20 class F2C;
21 class Group;
22 class Info;
23 class Keyval;
24 class Op;
25 class Process;
26 class Request;
27 class Status;
28 class Topo;
29 class Topo_Cart;
30 class Topo_Graph;
31 class Topo_Dist_Graph;
32 class Win;
33
34 }
35 }
36
37 typedef simgrid::smpi::Comm SMPI_Comm;
38 typedef simgrid::smpi::Datatype SMPI_Datatype;
39 typedef simgrid::smpi::Group SMPI_Group;
40 typedef simgrid::smpi::Info SMPI_Info;
41 typedef simgrid::smpi::Op SMPI_Op;
42 typedef simgrid::smpi::Process SMPI_Process;
43 typedef simgrid::smpi::Request SMPI_Request;
44 typedef simgrid::smpi::Topo SMPI_Topology;
45 typedef simgrid::smpi::Topo_Cart SMPI_Cart_topology;
46 typedef simgrid::smpi::Topo_Dist_Graph SMPI_Dist_Graph_topology;
47 typedef simgrid::smpi::Topo_Graph SMPI_Graph_topology;
48 typedef simgrid::smpi::Win SMPI_Win;
49
50 #else
51
52 typedef struct SMPI_Comm SMPI_Comm;
53 typedef struct SMPI_Datatype SMPI_Datatype;
54 typedef struct SMPI_Group SMPI_Group;
55 typedef struct SMPI_Info SMPI_Info;
56 typedef struct SMPI_Op SMPI_Op;
57 typedef struct SMPI_Process SMPI_Process;
58 typedef struct SMPI_Request SMPI_Request;
59 typedef struct SMPI_Topology SMPI_Topology;
60 typedef struct SMPI_Win SMPI_Win;
61
62 #endif
63
64 #endif