1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Includes: Move some miscellaneous includes into module header and source files

This commit is contained in:
Anthony Nicholls 2023-10-06 08:58:08 +01:00
parent d01166edc8
commit 90c458d92e
20 changed files with 34 additions and 46 deletions

View file

@ -354,6 +354,7 @@ JUCE_END_IGNORE_WARNINGS_MSVC
#include "streams/juce_AndroidDocumentInputSource.h"
#if JUCE_CORE_INCLUDE_OBJC_HELPERS && (JUCE_MAC || JUCE_IOS)
#include "native/juce_CFHelpers_mac.h"
#include "native/juce_ObjCHelpers_mac.h"
#endif

View file

@ -20,10 +20,6 @@
==============================================================================
*/
#if ! defined (DOXYGEN) && (JUCE_MAC || JUCE_IOS)
#include <libkern/OSByteOrder.h>
#endif
namespace juce
{

View file

@ -20,8 +20,6 @@
==============================================================================
*/
#include "juce_CFHelpers_mac.h"
/* This file contains a few helper functions that are used internally but which
need to be kept away from the public headers because they use obj-C symbols.
*/

View file

@ -92,6 +92,7 @@ JUCE_BEGIN_IGNORE_WARNINGS_MSVC (4514 4245 4100)
#if JUCE_MAC || JUCE_IOS
#include <libkern/OSAtomic.h>
#include <libkern/OSByteOrder.h>
#include <xlocale.h>
#include <signal.h>
#endif