diff options
Diffstat (limited to 'vmime/misc/importanceHelper.hpp')
-rw-r--r-- | vmime/misc/importanceHelper.hpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/vmime/misc/importanceHelper.hpp b/vmime/misc/importanceHelper.hpp index c5c48f50..ae8297fc 100644 --- a/vmime/misc/importanceHelper.hpp +++ b/vmime/misc/importanceHelper.hpp @@ -58,13 +58,13 @@ public: * * @param msg message on which to reset importance */ - static void resetImportance(ref <message> msg); + static void resetImportance(shared_ptr <message> msg); /** Reset the importance of a message to the default importance. * * @param hdr message header on which to reset importance */ - static void resetImportanceHeader(ref <header> hdr); + static void resetImportanceHeader(shared_ptr <header> hdr); /** Return the importance of the specified message. * @@ -72,7 +72,7 @@ public: * @return importance of the message, or default importance is no * information about importance is given in the message */ - static Importance getImportance(ref <const message> msg); + static Importance getImportance(shared_ptr <const message> msg); /** Return the importance of a message, given its header. * @@ -80,21 +80,21 @@ public: * @return importance of the message, or default importance is no * information about importance is given in the message */ - static Importance getImportanceHeader(ref <const header> hdr); + static Importance getImportanceHeader(shared_ptr <const header> hdr); /** Set the importance of the specified message. * * @param msg message on which to set importance * @param i new message importance */ - static void setImportance(ref <message> msg, const Importance i); + static void setImportance(shared_ptr <message> msg, const Importance i); /** Set the importance of a message, given its header. * * @param hdr message header on which to set importance * @param i new message importance */ - static void setImportanceHeader(ref <header> hdr, const Importance i); + static void setImportanceHeader(shared_ptr <header> hdr, const Importance i); }; |