2009-01-08 08:12:16 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00: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/. */
|
2009-01-08 08:12:16 +00:00
|
|
|
|
2013-02-14 23:02:08 +00:00
|
|
|
#ifndef nsSystemAlertsService_h__
|
|
|
|
#define nsSystemAlertsService_h__
|
2009-01-08 08:12:16 +00:00
|
|
|
|
|
|
|
#include "nsIAlertsService.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
|
2013-02-14 23:02:08 +00:00
|
|
|
class nsSystemAlertsService : public nsIAlertsService
|
2009-01-08 08:12:16 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_NSIALERTSSERVICE
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
2013-02-14 23:02:08 +00:00
|
|
|
nsSystemAlertsService();
|
|
|
|
virtual ~nsSystemAlertsService();
|
2009-01-08 08:12:16 +00:00
|
|
|
|
|
|
|
nsresult Init();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2013-02-14 23:02:08 +00:00
|
|
|
#endif /* nsSystemAlertsService_h__ */
|