mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Replace include guards with "#pragma once"
This commit is contained in:
parent
dda135a9eb
commit
2da1bc5f41
473 changed files with 474 additions and 2237 deletions
|
|
@ -46,8 +46,7 @@
|
|||
*******************************************************************************/
|
||||
|
||||
|
||||
#ifndef JUCE_OSC_H_INCLUDED
|
||||
#define JUCE_OSC_H_INCLUDED
|
||||
#pragma once
|
||||
|
||||
#include <juce_core/juce_core.h>
|
||||
#include <juce_events/juce_events.h>
|
||||
|
|
@ -67,5 +66,3 @@ namespace juce
|
|||
#include "osc/juce_OSCSender.h"
|
||||
|
||||
}
|
||||
|
||||
#endif // JUCE_OSC_H_INCLUDED
|
||||
|
|
|
|||
|
|
@ -22,8 +22,7 @@
|
|||
==============================================================================
|
||||
*/
|
||||
|
||||
#ifndef JUCE_OSCADDRESS_H_INCLUDED
|
||||
#define JUCE_OSCADDRESS_H_INCLUDED
|
||||
#pragma once
|
||||
|
||||
|
||||
//==============================================================================
|
||||
|
|
@ -145,6 +144,3 @@ private:
|
|||
String asString;
|
||||
bool wasInitialisedWithWildcards;
|
||||
};
|
||||
|
||||
|
||||
#endif // JUCE_OSCADDRESS_H_INCLUDED
|
||||
|
|
|
|||
|
|
@ -22,8 +22,7 @@
|
|||
==============================================================================
|
||||
*/
|
||||
|
||||
#ifndef JUCE_OSCARGUMENT_H_INCLUDED
|
||||
#define JUCE_OSCARGUMENT_H_INCLUDED
|
||||
#pragma once
|
||||
|
||||
|
||||
//==============================================================================
|
||||
|
|
@ -108,6 +107,3 @@ private:
|
|||
String stringValue;
|
||||
MemoryBlock blob;
|
||||
};
|
||||
|
||||
|
||||
#endif // JUCE_OSCARGUMENT_H_INCLUDED
|
||||
|
|
|
|||
|
|
@ -22,8 +22,7 @@
|
|||
==============================================================================
|
||||
*/
|
||||
|
||||
#ifndef JUCE_OSCBUNDLE_H_INCLUDED
|
||||
#define JUCE_OSCBUNDLE_H_INCLUDED
|
||||
#pragma once
|
||||
|
||||
//==============================================================================
|
||||
/**
|
||||
|
|
@ -128,6 +127,3 @@ private:
|
|||
Array<OSCBundle::Element> elements;
|
||||
OSCTimeTag timeTag;
|
||||
};
|
||||
|
||||
|
||||
#endif // JUCE_OSCBUNDLE_H_INCLUDED
|
||||
|
|
|
|||
|
|
@ -22,8 +22,7 @@
|
|||
==============================================================================
|
||||
*/
|
||||
|
||||
#ifndef JUCE_OSCMESSAGE_H_INCLUDED
|
||||
#define JUCE_OSCMESSAGE_H_INCLUDED
|
||||
#pragma once
|
||||
|
||||
|
||||
//==============================================================================
|
||||
|
|
@ -168,5 +167,3 @@ private:
|
|||
addArguments (std::forward<Arg1> (arg1), std::forward<Args> (args)...);
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif // JUCE_OSCMESSAGE_H_INCLUDED
|
||||
|
|
|
|||
|
|
@ -22,8 +22,7 @@
|
|||
==============================================================================
|
||||
*/
|
||||
|
||||
#ifndef JUCE_OSCRECEIVER_H_INCLUDED
|
||||
#define JUCE_OSCRECEIVER_H_INCLUDED
|
||||
#pragma once
|
||||
|
||||
//==============================================================================
|
||||
/**
|
||||
|
|
@ -212,6 +211,3 @@ private:
|
|||
|
||||
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (OSCReceiver)
|
||||
};
|
||||
|
||||
|
||||
#endif // JUCE_OSCRECEIVER_H_INCLUDED
|
||||
|
|
|
|||
|
|
@ -22,8 +22,7 @@
|
|||
==============================================================================
|
||||
*/
|
||||
|
||||
#ifndef JUCE_OSCSENDER_H_INCLUDED
|
||||
#define JUCE_OSCSENDER_H_INCLUDED
|
||||
#pragma once
|
||||
|
||||
|
||||
//==============================================================================
|
||||
|
|
@ -152,5 +151,3 @@ private:
|
|||
return sendToIPAddress (targetIPAddress, targetPortNumber, OSCMessage (address, std::forward<Args> (args)...));
|
||||
}
|
||||
#endif // JUCE_COMPILER_SUPPORTS_VARIADIC_TEMPLATES
|
||||
|
||||
#endif // JUCE_OSCSENDER_H_INCLUDED
|
||||
|
|
|
|||
|
|
@ -22,8 +22,7 @@
|
|||
==============================================================================
|
||||
*/
|
||||
|
||||
#ifndef JUCE_OSCTIMETAG_H_INCLUDED
|
||||
#define JUCE_OSCTIMETAG_H_INCLUDED
|
||||
#pragma once
|
||||
|
||||
|
||||
//==============================================================================
|
||||
|
|
@ -80,6 +79,3 @@ private:
|
|||
//==============================================================================
|
||||
uint64 rawTimeTag;
|
||||
};
|
||||
|
||||
|
||||
#endif // JUCE_OSCTIMETAG_H_INCLUDED
|
||||
|
|
|
|||
|
|
@ -22,8 +22,7 @@
|
|||
==============================================================================
|
||||
*/
|
||||
|
||||
#ifndef JUCE_OSCTYPE_H_INCLUDED
|
||||
#define JUCE_OSCTYPE_H_INCLUDED
|
||||
#pragma once
|
||||
|
||||
//==============================================================================
|
||||
|
||||
|
|
@ -94,6 +93,3 @@ struct OSCInternalError : public OSCException
|
|||
{
|
||||
OSCInternalError (const String& desc) : OSCException (desc) {}
|
||||
};
|
||||
|
||||
|
||||
#endif // JUCE_OSCTYPE_H_INCLUDED
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue