1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-25 02:04:23 +00:00

Tidied up some doxygen comments.

This commit is contained in:
Julian Storer 2010-12-21 14:34:02 +00:00
parent 7becff2aa4
commit 968d63bca6
16 changed files with 139 additions and 73 deletions

View file

@ -88,7 +88,7 @@
#include <GLUT/glut.h>
#endif
#if ! CGFLOAT_DEFINED
#if ! (CGFLOAT_DEFINED || defined (DOXYGEN))
#define CGFloat float
#endif

View file

@ -40,6 +40,8 @@
#define JUCE_ObjCExtraSuffix 3
#endif
#define appendMacro1(a, b, c, d, e) a ## _ ## b ## _ ## c ## _ ## d ## _ ## e
#define appendMacro2(a, b, c, d, e) appendMacro1(a, b, c, d, e)
#define MakeObjCClassName(rootName) appendMacro2 (rootName, JUCE_MAJOR_VERSION, JUCE_MINOR_VERSION, JUCE_BUILDNUMBER, JUCE_ObjCExtraSuffix)
#ifndef DOXYGEN
#define appendMacro1(a, b, c, d, e) a ## _ ## b ## _ ## c ## _ ## d ## _ ## e
#define appendMacro2(a, b, c, d, e) appendMacro1(a, b, c, d, e)
#define MakeObjCClassName(rootName) appendMacro2 (rootName, JUCE_MAJOR_VERSION, JUCE_MINOR_VERSION, JUCE_BUILDNUMBER, JUCE_ObjCExtraSuffix)
#endif