X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/08f744b9a55745ac1b1dcf0ed2ea735471cd7f89..9128f281ad37d5a65acb4780ad35765b622671d0:/include/simgrid/s4u/Actor.hpp diff --git a/include/simgrid/s4u/Actor.hpp b/include/simgrid/s4u/Actor.hpp index 0e336bad5e..d584d6dc11 100644 --- a/include/simgrid/s4u/Actor.hpp +++ b/include/simgrid/s4u/Actor.hpp @@ -124,12 +124,14 @@ namespace s4u { /** @brief Simulation Agent */ class XBT_PUBLIC Actor : public xbt::Extendable { +#ifndef DOXYGEN friend Exec; friend Mailbox; friend kernel::actor::ActorImpl; friend kernel::activity::MailboxImpl; kernel::actor::ActorImpl* const pimpl_; +#endif explicit Actor(smx_actor_t pimpl) : pimpl_(pimpl) {} @@ -148,7 +150,7 @@ public: /** Retrieve a reference to myself */ static Actor* self(); - /** Signal to others that a new actor has been created **/ + /** Fired when a new actor has been created **/ static xbt::signal on_creation; /** Signal to others that an actor has been suspended**/ static xbt::signal on_suspend;