Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
remove the useless prototype of sg_instr_new_host
[simgrid.git] / include / simgrid / s4u / 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_S4U_FORWARD_HPP
7 #define SIMGRID_S4U_FORWARD_HPP
8
9 #include <boost/intrusive_ptr.hpp>
10
11 namespace simgrid {
12 namespace s4u {
13
14 class Actor;
15 using ActorPtr = boost::intrusive_ptr<Actor>;
16
17 class Activity;
18 class Comm;
19 using CommPtr = boost::intrusive_ptr<Comm>;
20 class Engine;
21 class Host;
22 class Mailbox;
23 using MailboxPtr = boost::intrusive_ptr<Mailbox>;
24 class Mutex;
25
26 class Storage;
27
28 }
29 }
30
31 #endif