2011-11-20 14:59:46 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07: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/. */
|
2011-11-20 14:59:46 -08:00
|
|
|
|
2013-02-05 03:39:44 -08:00
|
|
|
#ifndef mozilla_dom_mobilemessage_MobileMessageDatabaseService_h
|
|
|
|
#define mozilla_dom_mobilemessage_MobileMessageDatabaseService_h
|
2011-11-20 14:59:46 -08:00
|
|
|
|
2013-02-05 03:39:44 -08:00
|
|
|
#include "nsIMobileMessageDatabaseService.h"
|
2012-06-18 18:21:14 -07:00
|
|
|
#include "mozilla/Attributes.h"
|
2011-11-20 14:59:46 -08:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
2013-02-05 03:39:44 -08:00
|
|
|
namespace mobilemessage {
|
2011-11-20 14:59:46 -08:00
|
|
|
|
2013-02-05 03:10:39 -08:00
|
|
|
class MobileMessageDatabaseService MOZ_FINAL : public nsIMobileMessageDatabaseService
|
2011-11-20 14:59:46 -08:00
|
|
|
{
|
2014-08-26 12:07:59 -07:00
|
|
|
private:
|
|
|
|
~MobileMessageDatabaseService() {}
|
|
|
|
|
2011-11-20 14:59:46 -08:00
|
|
|
public:
|
2012-01-10 11:19:56 -08:00
|
|
|
NS_DECL_ISUPPORTS
|
2013-02-05 03:10:39 -08:00
|
|
|
NS_DECL_NSIMOBILEMESSAGEDATABASESERVICE
|
2011-11-20 14:59:46 -08:00
|
|
|
};
|
|
|
|
|
2013-02-05 03:39:44 -08:00
|
|
|
} // namespace mobilemessage
|
2011-11-20 14:59:46 -08:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2013-02-05 03:39:44 -08:00
|
|
|
#endif // mozilla_dom_mobilemessage_MobileMessageDatabaseService_h
|