1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4  * License, v. 2.0. If a copy of the MPL was not distributed with this
5  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 // IWYU pragma: private, include "nsString.h"
7 
8 /**
9  * @file nsStringGlue.h
10  * This header exists solely to #include the proper internal/frozen string
11  * headers, depending on whether MOZILLA_INTERNAL_API is defined.
12  */
13 
14 #ifndef nsStringGlue_h__
15 #define nsStringGlue_h__
16 
17 #ifdef MOZILLA_INTERNAL_API
18 #include "nsString.h"
19 #include "nsReadableUtils.h"
20 #else
21 #include "nsStringAPI.h"
22 #endif
23 
24 #endif // nsStringGlue_h__
25