2001-09-26 02:58:40 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04: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/. */
|
2001-03-13 01:52:28 +03:00
|
|
|
|
|
|
|
#ifndef nsAppStartupNotifier_h___
|
|
|
|
#define nsAppStartupNotifier_h___
|
|
|
|
|
|
|
|
#include "nsIAppStartupNotifier.h"
|
|
|
|
|
2018-09-17 08:15:58 +03:00
|
|
|
class nsAppStartupNotifier final {
|
2001-03-13 01:52:28 +03:00
|
|
|
public:
|
2018-09-17 08:15:58 +03:00
|
|
|
static nsresult NotifyObservers(const char* aTopic);
|
2001-03-13 01:52:28 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsAppStartupNotifier_h___ */
|