X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/815ad0c49675dd68020f3562a2aca3531d81bc80..ea08504776a7b5b76f57bfee434b43ed572ca9f1:/include/simgrid/s4u/Mailbox.hpp diff --git a/include/simgrid/s4u/Mailbox.hpp b/include/simgrid/s4u/Mailbox.hpp index 3ca34595a0..34326a70b1 100644 --- a/include/simgrid/s4u/Mailbox.hpp +++ b/include/simgrid/s4u/Mailbox.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2006-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2006-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,14 +6,11 @@ #ifndef SIMGRID_S4U_MAILBOX_HPP #define SIMGRID_S4U_MAILBOX_HPP -#include - -#include #include - -#include #include +#include + namespace simgrid { namespace s4u { @@ -104,9 +101,8 @@ namespace s4u { * * @section s4u_mb_api The API */ -XBT_PUBLIC_CLASS Mailbox { +class XBT_PUBLIC Mailbox { friend Comm; - friend simgrid::s4u::Engine; friend simgrid::kernel::activity::MailboxImpl; simgrid::kernel::activity::MailboxImpl* pimpl_; @@ -119,12 +115,22 @@ XBT_PUBLIC_CLASS Mailbox { friend void intrusive_ptr_release(Mailbox*) {} public: /** private function, do not use. FIXME: make me protected */ - kernel::activity::MailboxImpl* getImpl() { return pimpl_; } + kernel::activity::MailboxImpl* get_impl() { return pimpl_; } + + XBT_ATTRIB_DEPRECATED_v323("Please use Mailbox::get_name()") const simgrid::xbt::string& getName() const + { + return get_name(); + } + XBT_ATTRIB_DEPRECATED_v323("Please use Mailbox::get_cname()") const char* getCname() const { return get_cname(); } + XBT_ATTRIB_DEPRECATED_v323("Please use Mailbox::get_impl()") kernel::activity::MailboxImpl* getImpl() + { + return get_impl(); + } /** @brief Retrieves the name of that mailbox as a C++ string */ - const simgrid::xbt::string& getName() const; + const simgrid::xbt::string& get_name() const; /** @brief Retrieves the name of that mailbox as a C string */ - const char* getCname() const; + const char* get_cname() const; /** Retrieve the mailbox associated to the given C string */ static MailboxPtr byName(const char *name);