X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/94cc774208a7e23ef350191bc9d9168e7da04097..824d7f2d443d4ba57b4bf93b8977b4f9a76f7cbd:/include/simgrid/s4u/forward.hpp diff --git a/include/simgrid/s4u/forward.hpp b/include/simgrid/s4u/forward.hpp index 237a5ebe33..e55df1f363 100644 --- a/include/simgrid/s4u/forward.hpp +++ b/include/simgrid/s4u/forward.hpp @@ -12,25 +12,32 @@ namespace simgrid { namespace s4u { +class Activity; class Actor; using ActorPtr = boost::intrusive_ptr; +XBT_PUBLIC(void) intrusive_ptr_release(Actor* actor); +XBT_PUBLIC(void) intrusive_ptr_add_ref(Actor* actor); -class Activity; class Comm; using CommPtr = boost::intrusive_ptr; +XBT_PUBLIC(void) intrusive_ptr_release(Comm* c); +XBT_PUBLIC(void) intrusive_ptr_add_ref(Comm* c); + class Engine; +class Exec; +using ExecPtr = boost::intrusive_ptr; +XBT_PUBLIC(void) intrusive_ptr_release(Exec* e); +XBT_PUBLIC(void) intrusive_ptr_add_ref(Exec* e); + class Host; class Link; class Mailbox; using MailboxPtr = boost::intrusive_ptr; class Mutex; class NetZone; - +class VirtualMachine; class File; class Storage; - -XBT_PUBLIC(void) intrusive_ptr_release(Comm* c); -XBT_PUBLIC(void) intrusive_ptr_add_ref(Comm* c); } }