X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a0c5b1ab11469128ad826610f54b1f0f332bd172..b9d2f7277242a82702b73e4ccdf63aec98855b5e:/include/simgrid/s4u/forward.hpp diff --git a/include/simgrid/s4u/forward.hpp b/include/simgrid/s4u/forward.hpp index cc29359308..e55df1f363 100644 --- a/include/simgrid/s4u/forward.hpp +++ b/include/simgrid/s4u/forward.hpp @@ -12,24 +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); } }