michael@0: /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: #ifndef nsAppStartupNotifier_h___ michael@0: #define nsAppStartupNotifier_h___ michael@0: michael@0: #include "nsIAppStartupNotifier.h" michael@0: michael@0: // {1F59B001-02C9-11d5-AE76-CC92F7DB9E03} michael@0: #define NS_APPSTARTUPNOTIFIER_CID \ michael@0: { 0x1f59b001, 0x2c9, 0x11d5, { 0xae, 0x76, 0xcc, 0x92, 0xf7, 0xdb, 0x9e, 0x3 } } michael@0: michael@0: class nsAppStartupNotifier : public nsIObserver michael@0: { michael@0: public: michael@0: NS_DEFINE_STATIC_CID_ACCESSOR( NS_APPSTARTUPNOTIFIER_CID ) michael@0: michael@0: NS_DECL_ISUPPORTS michael@0: NS_DECL_NSIOBSERVER michael@0: michael@0: nsAppStartupNotifier(); michael@0: virtual ~nsAppStartupNotifier(); michael@0: }; michael@0: michael@0: #endif /* nsAppStartupNotifier_h___ */ michael@0: