michael@0: /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ 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 nsAboutRedirector_h__ michael@0: #define nsAboutRedirector_h__ michael@0: michael@0: #include "nsIAboutModule.h" michael@0: michael@0: class nsAboutRedirector : public nsIAboutModule michael@0: { michael@0: public: michael@0: NS_DECL_ISUPPORTS michael@0: michael@0: NS_DECL_NSIABOUTMODULE michael@0: michael@0: nsAboutRedirector() {} michael@0: virtual ~nsAboutRedirector() {} michael@0: michael@0: static nsresult michael@0: Create(nsISupports *aOuter, REFNSIID aIID, void **aResult); michael@0: michael@0: protected: michael@0: }; michael@0: michael@0: #define NS_ABOUT_REDIRECTOR_MODULE_CID \ michael@0: { /* f0acde16-1dd1-11b2-9e35-f5786fff5a66*/ \ michael@0: 0xf0acde16, \ michael@0: 0x1dd1, \ michael@0: 0x11b2, \ michael@0: {0x9e, 0x35, 0xf5, 0x78, 0x6f, 0xff, 0x5a, 0x66} \ michael@0: } michael@0: michael@0: #endif // nsAboutRedirector_h__