// Copyright (c) 2010 Martin Knafve / hMailServer.com. // http://www.hmailserver.com #pragma once namespace HM { class MessageRecipient; class PersistentMessageRecipient { public: PersistentMessageRecipient(void); ~PersistentMessageRecipient(void); static bool DeleteObject(std::shared_ptr pRecipient); }; }