X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a92d7b716f51a53dea7f59db8524d4add713b910..ecd5f7562caf1d443bf22788fa5f4fac408776ec:/include/simgrid/s4u/forward.hpp diff --git a/include/simgrid/s4u/forward.hpp b/include/simgrid/s4u/forward.hpp index 10c8d856bb..5614300c71 100644 --- a/include/simgrid/s4u/forward.hpp +++ b/include/simgrid/s4u/forward.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2016. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2016-2017. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -7,11 +7,14 @@ #define SIMGRID_S4U_FORWARD_HPP #include +#include namespace simgrid { namespace s4u { class Actor; +XBT_PUBLIC(void) intrusive_ptr_release(Actor* actor); +XBT_PUBLIC(void) intrusive_ptr_add_ref(Actor* actor); using ActorPtr = boost::intrusive_ptr; class Activity; @@ -19,12 +22,18 @@ class Comm; using CommPtr = boost::intrusive_ptr; class Engine; 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); } }