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: // IWYU pragma: private, include "nsString.h" michael@0: michael@0: /** michael@0: * @file nsStringGlue.h michael@0: * This header exists solely to #include the proper internal/frozen string michael@0: * headers, depending on whether MOZILLA_INTERNAL_API is defined. michael@0: */ michael@0: michael@0: #ifndef nsStringGlue_h__ michael@0: #define nsStringGlue_h__ michael@0: michael@0: #ifdef MOZILLA_INTERNAL_API michael@0: #include "nsString.h" michael@0: #include "nsReadableUtils.h" michael@0: #else michael@0: #include "nsStringAPI.h" michael@0: #endif michael@0: michael@0: #endif // nsStringGlue_h__