nsNativeAppSupportBase.h 801 B

1234567891011121314151617181920212223242526272829
  1. /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* This Source Code Form is subject to the terms of the Mozilla Public
  3. * License, v. 2.0. If a copy of the MPL was not distributed with this
  4. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  5. #ifndef nsNativeAppSupportBase_h__
  6. #define nsNativeAppSupportBase_h__
  7. #include "nsAppRunner.h"
  8. #include "nsINativeAppSupport.h"
  9. // nsNativeAppSupportBase
  10. //
  11. // This is a default implementation of the nsINativeAppSupport interface
  12. // declared in mozilla/xpfe/appshell/public/nsINativeAppSupport.h.
  13. class nsNativeAppSupportBase : public nsINativeAppSupport {
  14. public:
  15. nsNativeAppSupportBase();
  16. NS_DECL_ISUPPORTS
  17. NS_DECL_NSINATIVEAPPSUPPORT
  18. protected:
  19. virtual ~nsNativeAppSupportBase();
  20. };
  21. #endif