29 lines
666 B
C++
29 lines
666 B
C++
/* 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 nsAlertsService_h_
|
|
#define nsAlertsService_h_
|
|
|
|
#include "nsIAlertsService.h"
|
|
#include "nsIObserver.h"
|
|
|
|
struct GrowlDelegateWrapper;
|
|
|
|
class nsAlertsService : public nsIAlertsService,
|
|
public nsIObserver
|
|
{
|
|
public:
|
|
NS_DECL_ISUPPORTS
|
|
NS_DECL_NSIALERTSSERVICE
|
|
NS_DECL_NSIOBSERVER
|
|
|
|
nsAlertsService();
|
|
nsresult Init();
|
|
private:
|
|
GrowlDelegateWrapper* mDelegate;
|
|
virtual ~nsAlertsService();
|
|
};
|
|
|
|
#endif // nsAlertsService_h_
|