2013-03-08 23:22:25 -08:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_mobilemessage_MobileMessageService_h
|
|
|
|
#define mozilla_dom_mobilemessage_MobileMessageService_h
|
|
|
|
|
2014-09-21 00:24:44 -07:00
|
|
|
#include "mozilla/Attributes.h" // For MOZ_FINAL
|
2013-03-08 23:22:25 -08:00
|
|
|
#include "nsIMobileMessageService.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
namespace mobilemessage {
|
|
|
|
|
|
|
|
class MobileMessageService MOZ_FINAL : public nsIMobileMessageService
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIMOBILEMESSAGESERVICE
|
|
|
|
|
2014-09-21 00:24:44 -07:00
|
|
|
MobileMessageService() { MOZ_COUNT_CTOR(MobileMessageService); }
|
2013-03-08 23:22:25 -08:00
|
|
|
|
|
|
|
private:
|
2014-09-21 00:24:44 -07:00
|
|
|
// MOZ_FINAL suppresses -Werror,-Wdelete-non-virtual-dtor
|
|
|
|
~MobileMessageService() { MOZ_COUNT_DTOR(MobileMessageService); }
|
2013-03-08 23:22:25 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mobilemessage
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_mobilemessage_MobileMessageService_h
|