X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/900387d3c17ad331e7ce770590d07aca4be07c1d..9caf173e476622d309cc5653a83d224d05787cc7:/include/simgrid/s4u/forward.hpp diff --git a/include/simgrid/s4u/forward.hpp b/include/simgrid/s4u/forward.hpp index 12a789486d..09e6af5db5 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-2018. 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. */ @@ -6,16 +6,40 @@ #ifndef SIMGRID_S4U_FORWARD_HPP #define SIMGRID_S4U_FORWARD_HPP +#include +#include + namespace simgrid { namespace s4u { -class Async; +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 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; +XBT_PUBLIC void intrusive_ptr_release(Mailbox* m); +XBT_PUBLIC void intrusive_ptr_add_ref(Mailbox* m); +class Mutex; +class NetZone; +class VirtualMachine; +class File; class Storage; - } }