nsStringGlue.h 702 B

123456789101112131415161718192021222324
  1. /* -*- Mode: C++; tab-width: 8; 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. // IWYU pragma: private, include "nsString.h"
  6. /**
  7. * @file nsStringGlue.h
  8. * This header exists solely to #include the proper internal/frozen string
  9. * headers, depending on whether MOZILLA_INTERNAL_API is defined.
  10. */
  11. #ifndef nsStringGlue_h__
  12. #define nsStringGlue_h__
  13. #ifdef MOZILLA_INTERNAL_API
  14. #include "nsString.h"
  15. #include "nsReadableUtils.h"
  16. #else
  17. #include "nsStringAPI.h"
  18. #endif
  19. #endif // nsStringGlue_h__