unify include guard defines, __$FILENAME__

without the underscores these clogged up the namespace for autocompleation which was annoying.
This commit is contained in:
Campbell Barton
2012-02-17 18:59:41 +00:00
parent 99d0ba6299
commit 2b7ca2304a
657 changed files with 1669 additions and 1675 deletions

View File

@@ -1,5 +1,5 @@
#ifndef __redcode_codec_h_included__
#define __redcode_codec_h_included__
#ifndef __CODEC_H__
#define __CODEC_H__
struct redcode_frame;

View File

@@ -1,5 +1,5 @@
#ifndef __redcode_debayer_h_included__
#define __redcode_debayer_h_included__ 1
#ifndef __DEBAYER_H__
#define __DEBAYER_H__
void redcode_ycbcr2rgb_fullscale(
int ** planes, int width, int height, float * out);

View File

@@ -1,5 +1,5 @@
#ifndef __redcode_format_h_included__
#define __redcode_format_h_included__
#ifndef __FORMAT_H__
#define __FORMAT_H__
struct redcode_handle;
struct redcode_frame {

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_ACCUMULATORFACTORY
#define AUD_ACCUMULATORFACTORY
#ifndef __AUD_ACCUMULATORFACTORY_H__
#define __AUD_ACCUMULATORFACTORY_H__
#include "AUD_EffectFactory.h"
class AUD_CallbackIIRFilterReader;
@@ -66,4 +66,4 @@ public:
static sample_t accumulatorFilter(AUD_CallbackIIRFilterReader* reader, void* useless);
};
#endif //AUD_ACCUMULATORFACTORY
#endif //__AUD_ACCUMULATORFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_BASEIIRFILTERREADER
#define AUD_BASEIIRFILTERREADER
#ifndef __AUD_BASEIIRFILTERREADER_H__
#define __AUD_BASEIIRFILTERREADER_H__
#include "AUD_EffectReader.h"
#include "AUD_Buffer.h"
@@ -132,4 +132,4 @@ public:
virtual void sampleRateChanged(AUD_SampleRate rate);
};
#endif //AUD_BASEIIRFILTERREADER
#endif //__AUD_BASEIIRFILTERREADER_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_BUTTERWORTHFACTORY
#define AUD_BUTTERWORTHFACTORY
#ifndef __AUD_BUTTERWORTHFACTORY_H__
#define __AUD_BUTTERWORTHFACTORY_H__
#include "AUD_DynamicIIRFilterFactory.h"
@@ -60,4 +60,4 @@ public:
std::vector<float>& a);
};
#endif //AUD_BUTTERWORTHFACTORY
#endif //__AUD_BUTTERWORTHFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_CALLBACKIIRFILTERREADER
#define AUD_CALLBACKIIRFILTERREADER
#ifndef __AUD_CALLBACKIIRFILTERREADER_H__
#define __AUD_CALLBACKIIRFILTERREADER_H__
#include "AUD_BaseIIRFilterReader.h"
#include "AUD_Buffer.h"
@@ -84,4 +84,4 @@ public:
virtual sample_t filter();
};
#endif //AUD_CALLBACKIIRFILTERREADER
#endif //__AUD_CALLBACKIIRFILTERREADER_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_DELAYFACTORY
#define AUD_DELAYFACTORY
#ifndef __AUD_DELAYFACTORY_H__
#define __AUD_DELAYFACTORY_H__
#include "AUD_EffectFactory.h"
@@ -63,4 +63,4 @@ public:
virtual AUD_Reference<AUD_IReader> createReader();
};
#endif //AUD_DELAYFACTORY
#endif //__AUD_DELAYFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_DELAYREADER
#define AUD_DELAYREADER
#ifndef __AUD_DELAYREADER_H__
#define __AUD_DELAYREADER_H__
#include "AUD_EffectReader.h"
#include "AUD_Buffer.h"
@@ -67,4 +67,4 @@ public:
virtual void read(int& length, bool& eos, sample_t* buffer);
};
#endif //AUD_DELAYREADER
#endif //__AUD_DELAYREADER_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_DOUBLEFACTORY
#define AUD_DOUBLEFACTORY
#ifndef __AUD_DOUBLEFACTORY_H__
#define __AUD_DOUBLEFACTORY_H__
#include "AUD_IFactory.h"
@@ -63,4 +63,4 @@ public:
virtual AUD_Reference<AUD_IReader> createReader();
};
#endif //AUD_DOUBLEFACTORY
#endif //__AUD_DOUBLEFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_DOUBLEREADER
#define AUD_DOUBLEREADER
#ifndef __AUD_DOUBLEREADER_H__
#define __AUD_DOUBLEREADER_H__
#include "AUD_IReader.h"
#include "AUD_Buffer.h"
@@ -80,4 +80,4 @@ public:
virtual void read(int& length, bool& eos, sample_t* buffer);
};
#endif //AUD_DOUBLEREADER
#endif //__AUD_DOUBLEREADER_H__

View File

@@ -26,8 +26,8 @@
* \ingroup audfx
*/
#ifndef AUD_DYNAMICIIRFILTERFACTORY
#define AUD_DYNAMICIIRFILTERFACTORY
#ifndef __AUD_DYNAMICIIRFILTERFACTORY_H__
#define __AUD_DYNAMICIIRFILTERFACTORY_H__
#include "AUD_EffectFactory.h"
#include <vector>
@@ -60,4 +60,4 @@ public:
std::vector<float>& a)=0;
};
#endif // AUD_DYNAMICIIRFILTERFACTORY
#endif // __AUD_DYNAMICIIRFILTERFACTORY_H__

View File

@@ -26,8 +26,8 @@
* \ingroup audfx
*/
#ifndef AUD_DYNAMICIIRFILTERREADER
#define AUD_DYNAMICIIRFILTERREADER
#ifndef __AUD_DYNAMICIIRFILTERREADER_H__
#define __AUD_DYNAMICIIRFILTERREADER_H__
#include "AUD_IIRFilterReader.h"
#include "AUD_DynamicIIRFilterFactory.h"
@@ -51,4 +51,4 @@ public:
virtual void sampleRateChanged(AUD_SampleRate rate);
};
#endif // AUD_DYNAMICIIRFILTERREADER
#endif // __AUD_DYNAMICIIRFILTERREADER_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_EFFECTFACTORY
#define AUD_EFFECTFACTORY
#ifndef __AUD_EFFECTFACTORY_H__
#define __AUD_EFFECTFACTORY_H__
#include "AUD_IFactory.h"
@@ -79,4 +79,4 @@ public:
AUD_Reference<AUD_IFactory> getFactory() const;
};
#endif //AUD_EFFECTFACTORY
#endif //__AUD_EFFECTFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_EFFECTREADER
#define AUD_EFFECTREADER
#ifndef __AUD_EFFECTREADER_H__
#define __AUD_EFFECTREADER_H__
#include "AUD_IReader.h"
#include "AUD_Reference.h"
@@ -70,4 +70,4 @@ public:
virtual void read(int& length, bool& eos, sample_t* buffer);
};
#endif //AUD_EFFECTREADER
#endif //__AUD_EFFECTREADER_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_ENVELOPEFACTORY
#define AUD_ENVELOPEFACTORY
#ifndef __AUD_ENVELOPEFACTORY_H__
#define __AUD_ENVELOPEFACTORY_H__
#include "AUD_EffectFactory.h"
class AUD_CallbackIIRFilterReader;
@@ -82,4 +82,4 @@ public:
static void endEnvelopeFilter(EnvelopeParameters* param);
};
#endif //AUD_ENVELOPEFACTORY
#endif //__AUD_ENVELOPEFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_FADERFACTORY
#define AUD_FADERFACTORY
#ifndef __AUD_FADERFACTORY_H__
#define __AUD_FADERFACTORY_H__
#include "AUD_EffectFactory.h"
@@ -89,4 +89,4 @@ public:
virtual AUD_Reference<AUD_IReader> createReader();
};
#endif //AUD_FADERFACTORY
#endif //__AUD_FADERFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_FADERREADER
#define AUD_FADERREADER
#ifndef __AUD_FADERREADER_H__
#define __AUD_FADERREADER_H__
#include "AUD_EffectReader.h"
#include "AUD_Buffer.h"
@@ -73,4 +73,4 @@ public:
virtual void read(int& length, bool& eos, sample_t* buffer);
};
#endif //AUD_FADERREADER
#endif //__AUD_FADERREADER_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_HIGHPASSFACTORY
#define AUD_HIGHPASSFACTORY
#ifndef __AUD_HIGHPASSFACTORY_H__
#define __AUD_HIGHPASSFACTORY_H__
#include "AUD_DynamicIIRFilterFactory.h"
@@ -64,4 +64,4 @@ public:
virtual void recalculateCoefficients(AUD_SampleRate rate, std::vector<float> &b, std::vector<float> &a);
};
#endif //AUD_HIGHPASSFACTORY
#endif //__AUD_HIGHPASSFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_IIRFILTERFACTORY
#define AUD_IIRFILTERFACTORY
#ifndef __AUD_IIRFILTERFACTORY_H__
#define __AUD_IIRFILTERFACTORY_H__
#include "AUD_EffectFactory.h"
@@ -67,4 +67,4 @@ public:
virtual AUD_Reference<AUD_IReader> createReader();
};
#endif //AUD_IIRFILTERFACTORY
#endif //__AUD_IIRFILTERFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_IIRFILTERREADER
#define AUD_IIRFILTERREADER
#ifndef __AUD_IIRFILTERREADER_H__
#define __AUD_IIRFILTERREADER_H__
#include "AUD_BaseIIRFilterReader.h"
@@ -70,4 +70,4 @@ public:
const std::vector<float>& a);
};
#endif //AUD_IIRFILTERREADER
#endif //__AUD_IIRFILTERREADER_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_LIMITERFACTORY
#define AUD_LIMITERFACTORY
#ifndef __AUD_LIMITERFACTORY_H__
#define __AUD_LIMITERFACTORY_H__
#include "AUD_EffectFactory.h"
@@ -76,4 +76,4 @@ public:
virtual AUD_Reference<AUD_IReader> createReader();
};
#endif //AUD_LIMITERFACTORY
#endif //__AUD_LIMITERFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_LIMITERREADER
#define AUD_LIMITERREADER
#ifndef __AUD_LIMITERREADER_H__
#define __AUD_LIMITERREADER_H__
#include "AUD_EffectReader.h"
@@ -68,4 +68,4 @@ public:
virtual void read(int& length, bool& eos, sample_t* buffer);
};
#endif //AUD_LIMITERREADER
#endif //__AUD_LIMITERREADER_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_LOOPFACTORY
#define AUD_LOOPFACTORY
#ifndef __AUD_LOOPFACTORY_H__
#define __AUD_LOOPFACTORY_H__
#include "AUD_EffectFactory.h"
@@ -65,4 +65,4 @@ public:
virtual AUD_Reference<AUD_IReader> createReader();
};
#endif //AUD_LOOPFACTORY
#endif //__AUD_LOOPFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_LOOPREADER
#define AUD_LOOPREADER
#ifndef __AUD_LOOPREADER_H__
#define __AUD_LOOPREADER_H__
#include "AUD_EffectReader.h"
#include "AUD_Buffer.h"
@@ -69,4 +69,4 @@ public:
virtual void read(int& length, bool& eos, sample_t* buffer);
};
#endif //AUD_LOOPREADER
#endif //__AUD_LOOPREADER_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_LOWPASSFACTORY
#define AUD_LOWPASSFACTORY
#ifndef __AUD_LOWPASSFACTORY_H__
#define __AUD_LOWPASSFACTORY_H__
#include "AUD_DynamicIIRFilterFactory.h"
@@ -64,4 +64,4 @@ public:
virtual void recalculateCoefficients(AUD_SampleRate rate, std::vector<float> &b, std::vector<float> &a);
};
#endif //AUD_LOWPASSFACTORY
#endif //__AUD_LOWPASSFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_PINGPONGFACTORY
#define AUD_PINGPONGFACTORY
#ifndef __AUD_PINGPONGFACTORY_H__
#define __AUD_PINGPONGFACTORY_H__
#include "AUD_EffectFactory.h"
@@ -53,4 +53,4 @@ public:
virtual AUD_Reference<AUD_IReader> createReader();
};
#endif //AUD_PINGPONGFACTORY
#endif //__AUD_PINGPONGFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_PITCHFACTORY
#define AUD_PITCHFACTORY
#ifndef __AUD_PITCHFACTORY_H__
#define __AUD_PITCHFACTORY_H__
#include "AUD_EffectFactory.h"
@@ -58,4 +58,4 @@ public:
virtual AUD_Reference<AUD_IReader> createReader();
};
#endif //AUD_PITCHFACTORY
#endif //__AUD_PITCHFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_PITCHREADER
#define AUD_PITCHREADER
#ifndef __AUD_PITCHREADER_H__
#define __AUD_PITCHREADER_H__
#include "AUD_EffectReader.h"
@@ -70,4 +70,4 @@ public:
void setPitch(float pitch);
};
#endif //AUD_PITCHREADER
#endif //__AUD_PITCHREADER_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_RECTIFYFACTORY
#define AUD_RECTIFYFACTORY
#ifndef __AUD_RECTIFYFACTORY_H__
#define __AUD_RECTIFYFACTORY_H__
#include "AUD_EffectFactory.h"
class AUD_CallbackIIRFilterReader;
@@ -55,4 +55,4 @@ public:
static sample_t rectifyFilter(AUD_CallbackIIRFilterReader* reader, void* useless);
};
#endif //AUD_RECTIFYFACTORY
#endif //__AUD_RECTIFYFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_REVERSEFACTORY
#define AUD_REVERSEFACTORY
#ifndef __AUD_REVERSEFACTORY_H__
#define __AUD_REVERSEFACTORY_H__
#include "AUD_EffectFactory.h"
@@ -53,4 +53,4 @@ public:
virtual AUD_Reference<AUD_IReader> createReader();
};
#endif //AUD_REVERSEFACTORY
#endif //__AUD_REVERSEFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_REVERSEREADER
#define AUD_REVERSEREADER
#ifndef __AUD_REVERSEREADER_H__
#define __AUD_REVERSEREADER_H__
#include "AUD_EffectReader.h"
#include "AUD_Buffer.h"
@@ -69,4 +69,4 @@ public:
virtual void read(int& length, bool& eos, sample_t* buffer);
};
#endif //AUD_REVERSEREADER
#endif //__AUD_REVERSEREADER_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_SQUAREFACTORY
#define AUD_SQUAREFACTORY
#ifndef __AUD_SQUAREFACTORY_H__
#define __AUD_SQUAREFACTORY_H__
#include "AUD_EffectFactory.h"
class AUD_CallbackIIRFilterReader;
@@ -67,4 +67,4 @@ public:
static void endSquareFilter(float* threshold);
};
#endif //AUD_SQUAREFACTORY
#endif //__AUD_SQUAREFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_SUMFACTORY
#define AUD_SUMFACTORY
#ifndef __AUD_SUMFACTORY_H__
#define __AUD_SUMFACTORY_H__
#include "AUD_EffectFactory.h"
@@ -52,4 +52,4 @@ public:
virtual AUD_Reference<AUD_IReader> createReader();
};
#endif //AUD_SUMFACTORY
#endif //__AUD_SUMFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_SUPERPOSEFACTORY
#define AUD_SUPERPOSEFACTORY
#ifndef __AUD_SUPERPOSEFACTORY_H__
#define __AUD_SUPERPOSEFACTORY_H__
#include "AUD_IFactory.h"
@@ -65,4 +65,4 @@ public:
virtual AUD_Reference<AUD_IReader> createReader();
};
#endif //AUD_SUPERPOSEFACTORY
#endif //__AUD_SUPERPOSEFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_SUPERPOSEREADER
#define AUD_SUPERPOSEREADER
#ifndef __AUD_SUPERPOSEREADER_H__
#define __AUD_SUPERPOSEREADER_H__
#include "AUD_IReader.h"
#include "AUD_Buffer.h"
@@ -81,4 +81,4 @@ public:
virtual void read(int& length, bool& eos, sample_t* buffer);
};
#endif //AUD_SUPERPOSEREADER
#endif //__AUD_SUPERPOSEREADER_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_VOLUMEFACTORY
#define AUD_VOLUMEFACTORY
#ifndef __AUD_VOLUMEFACTORY_H__
#define __AUD_VOLUMEFACTORY_H__
#include "AUD_EffectFactory.h"
@@ -66,4 +66,4 @@ public:
virtual AUD_Reference<AUD_IReader> createReader();
};
#endif //AUD_VOLUMEFACTORY
#endif //__AUD_VOLUMEFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_OPENALDEVICE
#define AUD_OPENALDEVICE
#ifndef __AUD_OPENALDEVICE_H__
#define __AUD_OPENALDEVICE_H__
#include "AUD_IDevice.h"
#include "AUD_IHandle.h"
@@ -277,4 +277,4 @@ public:
virtual void setDistanceModel(AUD_DistanceModel model);
};
#endif //AUD_OPENALDEVICE
#endif //__AUD_OPENALDEVICE_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_PYAPI
#define AUD_PYAPI
#ifndef __AUD_PYAPI_H__
#define __AUD_PYAPI_H__
#include "Python.h"
@@ -71,4 +71,4 @@ extern Factory* checkFactory(PyObject* factory);
}
#endif
#endif //AUD_PYAPI
#endif //__AUD_PYAPI_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_SDLDEVICE
#define AUD_SDLDEVICE
#ifndef __AUD_SDLDEVICE_H__
#define __AUD_SDLDEVICE_H__
#include "AUD_SoftwareDevice.h"
@@ -72,4 +72,4 @@ public:
virtual ~AUD_SDLDevice();
};
#endif //AUD_SDLDEVICE
#endif //__AUD_SDLDEVICE_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_SRCRESAMPLEFACTORY
#define AUD_SRCRESAMPLEFACTORY
#ifndef __AUD_SRCRESAMPLEFACTORY_H__
#define __AUD_SRCRESAMPLEFACTORY_H__
#include "AUD_MixerFactory.h"
@@ -54,4 +54,4 @@ public:
virtual AUD_Reference<AUD_IReader> createReader();
};
#endif //AUD_SRCRESAMPLEFACTORY
#endif //__AUD_SRCRESAMPLEFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_SRCRESAMPLEREADER
#define AUD_SRCRESAMPLEREADER
#ifndef __AUD_SRCRESAMPLEREADER_H__
#define __AUD_SRCRESAMPLEREADER_H__
#include "AUD_ResampleReader.h"
#include "AUD_Buffer.h"
@@ -100,4 +100,4 @@ public:
virtual void read(int& length, bool& eos, sample_t* buffer);
};
#endif //AUD_SRCRESAMPLEREADER
#endif //__AUD_SRCRESAMPLEREADER_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_FFMPEGFACTORY
#define AUD_FFMPEGFACTORY
#ifndef __AUD_FFMPEGFACTORY_H__
#define __AUD_FFMPEGFACTORY_H__
#include "AUD_IFactory.h"
#include "AUD_Reference.h"
@@ -75,4 +75,4 @@ public:
virtual AUD_Reference<AUD_IReader> createReader();
};
#endif //AUD_FFMPEGFACTORY
#endif //__AUD_FFMPEGFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_FFMPEGREADER
#define AUD_FFMPEGREADER
#ifndef __AUD_FFMPEGREADER_H__
#define __AUD_FFMPEGREADER_H__
#include "AUD_ConverterFunctions.h"
#include "AUD_IReader.h"
@@ -161,4 +161,4 @@ public:
virtual void read(int& length, bool& eos, sample_t* buffer);
};
#endif //AUD_FFMPEGREADER
#endif //__AUD_FFMPEGREADER_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_FFMPEGWRITER
#define AUD_FFMPEGWRITER
#ifndef __AUD_FFMPEGWRITER_H__
#define __AUD_FFMPEGWRITER_H__
#include "AUD_ConverterFunctions.h"
#include "AUD_Buffer.h"
@@ -135,4 +135,4 @@ public:
virtual void write(unsigned int length, sample_t* buffer);
};
#endif //AUD_FFMPEGWRITER
#endif //__AUD_FFMPEGWRITER_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_BANDPASSFACTORY
#define AUD_BANDPASSFACTORY
#ifndef __AUD_BANDPASSFACTORY_H__
#define __AUD_BANDPASSFACTORY_H__
#include "AUD_EffectFactory.h"
@@ -89,4 +89,4 @@ public:
virtual AUD_IReader* createReader();
};
#endif //AUD_BANDPASSFACTORY
#endif //__AUD_BANDPASSFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_BANDPASSREADER
#define AUD_BANDPASSREADER
#ifndef __AUD_BANDPASSREADER_H__
#define __AUD_BANDPASSREADER_H__
#include <fftw3.h>
@@ -99,4 +99,4 @@ public:
virtual void read(int & length, sample_t* & buffer);
};
#endif //AUD_BANDPASSREADER
#endif //__AUD_BANDPASSREADER_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_3DMATH
#define AUD_3DMATH
#ifndef __AUD_3DMATH_H__
#define __AUD_3DMATH_H__
#include <cmath>
#include <cstring>
@@ -325,4 +325,4 @@ public:
}
};
#endif //AUD_3DMATH
#endif //__AUD_3DMATH_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_ANIMATEABLEPROPERTY
#define AUD_ANIMATEABLEPROPERTY
#ifndef __AUD_ANIMATEABLEPROPERTY_H__
#define __AUD_ANIMATEABLEPROPERTY_H__
#include "AUD_Buffer.h"
@@ -103,4 +103,4 @@ public:
bool isAnimated() const;
};
#endif //AUD_ANIMATEABLEPROPERTY
#endif //__AUD_ANIMATEABLEPROPERTY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_BUFFER
#define AUD_BUFFER
#ifndef __AUD_BUFFER_H__
#define __AUD_BUFFER_H__
#include "AUD_Space.h"
@@ -90,4 +90,4 @@ public:
void assureSize(int size, bool keep = false);
};
#endif //AUD_BUFFER
#endif //__AUD_BUFFER_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_BUFFERREADER
#define AUD_BUFFERREADER
#ifndef __AUD_BUFFERREADER_H__
#define __AUD_BUFFERREADER_H__
#include "AUD_IReader.h"
#include "AUD_Reference.h"
@@ -77,4 +77,4 @@ public:
virtual void read(int& length, bool& eos, sample_t* buffer);
};
#endif //AUD_BUFFERREADER
#endif //__AUD_BUFFERREADER_H__

View File

@@ -26,8 +26,8 @@
* \ingroup audaspace
*/
#ifndef AUD_CAPI
#define AUD_CAPI
#ifndef __AUD_C_API_H__
#define __AUD_C_API_H__
#ifdef WITH_PYTHON
#include "Python.h"
@@ -755,4 +755,4 @@ AUD_Reference<AUD_IDevice> AUD_getDevice();
AUD_I3DDevice* AUD_get3DDevice();
#endif
#endif //AUD_CAPI
#endif //__AUD_C_API_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_CHANNELMAPPERFACTORY
#define AUD_CHANNELMAPPERFACTORY
#ifndef __AUD_CHANNELMAPPERFACTORY_H__
#define __AUD_CHANNELMAPPERFACTORY_H__
#include "AUD_MixerFactory.h"
@@ -54,4 +54,4 @@ public:
virtual AUD_Reference<AUD_IReader> createReader();
};
#endif //AUD_CHANNELMAPPERFACTORY
#endif //__AUD_CHANNELMAPPERFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_CHANNELMAPPERREADER
#define AUD_CHANNELMAPPERREADER
#ifndef __AUD_CHANNELMAPPERREADER_H__
#define __AUD_CHANNELMAPPERREADER_H__
#include "AUD_EffectReader.h"
#include "AUD_Buffer.h"
@@ -133,4 +133,4 @@ public:
virtual void read(int& length, bool& eos, sample_t* buffer);
};
#endif //AUD_CHANNELMAPPERREADER
#endif //__AUD_CHANNELMAPPERREADER_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_CONVERTERFACTORY
#define AUD_CONVERTERFACTORY
#ifndef __AUD_CONVERTERFACTORY_H__
#define __AUD_CONVERTERFACTORY_H__
#include "AUD_MixerFactory.h"
@@ -54,4 +54,4 @@ public:
virtual AUD_Reference<AUD_IReader> createReader();
};
#endif //AUD_CONVERTERFACTORY
#endif //__AUD_CONVERTERFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_CONVERTERFUNCTIONS
#define AUD_CONVERTERFUNCTIONS
#ifndef __AUD_CONVERTERFUNCTIONS_H__
#define __AUD_CONVERTERFUNCTIONS_H__
#include "AUD_Space.h"
@@ -135,4 +135,4 @@ void AUD_convert_double_s32(data_t* target, data_t* source, int length);
void AUD_convert_double_float(data_t* target, data_t* source, int length);
#endif //AUD_CONVERTERFUNCTIONS
#endif //__AUD_CONVERTERFUNCTIONS_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_CONVERTERREADER
#define AUD_CONVERTERREADER
#ifndef __AUD_CONVERTERREADER_H__
#define __AUD_CONVERTERREADER_H__
#include "AUD_EffectReader.h"
#include "AUD_ConverterFunctions.h"
@@ -70,4 +70,4 @@ public:
virtual void read(int& length, bool& eos, sample_t* buffer);
};
#endif //AUD_CONVERTERREADER
#endif //__AUD_CONVERTERREADER_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_FILEFACTORY
#define AUD_FILEFACTORY
#ifndef __AUD_FILEFACTORY_H__
#define __AUD_FILEFACTORY_H__
#include "AUD_IFactory.h"
#include "AUD_Reference.h"
@@ -73,4 +73,4 @@ public:
virtual AUD_Reference<AUD_IReader> createReader();
};
#endif //AUD_FILEFACTORY
#endif //__AUD_FILEFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_FILEWRITER
#define AUD_FILEWRITER
#ifndef __AUD_FILEWRITER_H__
#define __AUD_FILEWRITER_H__
#include <string>
@@ -70,4 +70,4 @@ public:
static void writeReader(AUD_Reference<AUD_IReader> reader, AUD_Reference<AUD_IWriter> writer, unsigned int length, unsigned int buffersize);
};
#endif //AUD_FILEWRITER
#endif //__AUD_FILEWRITER_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_I3DDEVICE
#define AUD_I3DDEVICE
#ifndef __AUD_I3DDEVICE_H__
#define __AUD_I3DDEVICE_H__
#include "AUD_Space.h"
#include "AUD_3DMath.h"
@@ -119,4 +119,4 @@ public:
virtual void setDistanceModel(AUD_DistanceModel model)=0;
};
#endif //AUD_I3DDEVICE
#endif //__AUD_I3DDEVICE_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_I3DHANDLE
#define AUD_I3DHANDLE
#ifndef __AUD_I3DHANDLE_H__
#define __AUD_I3DHANDLE_H__
#include "AUD_Space.h"
#include "AUD_3DMath.h"
@@ -213,4 +213,4 @@ public:
virtual bool setConeVolumeOuter(float volume)=0;
};
#endif //AUD_I3DHANDLE
#endif //__AUD_I3DHANDLE_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_IDEVICE
#define AUD_IDEVICE
#ifndef __AUD_IDEVICE_H__
#define __AUD_IDEVICE_H__
#include "AUD_Space.h"
#include "AUD_Reference.h"

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_IFACTORY
#define AUD_IFACTORY
#ifndef __AUD_IFACTORY_H__
#define __AUD_IFACTORY_H__
#include "AUD_Space.h"
#include "AUD_Reference.h"
@@ -57,4 +57,4 @@ public:
virtual AUD_Reference<AUD_IReader> createReader()=0;
};
#endif //AUD_IFACTORY
#endif //__AUD_IFACTORY_H__

View File

@@ -26,8 +26,8 @@
* \ingroup audaspaceintern
*/
#ifndef AUD_IHANDLE
#define AUD_IHANDLE
#ifndef __AUD_IHANDLE_H__
#define __AUD_IHANDLE_H__
//#include "AUD_Space.h"
//#include "AUD_Reference.h"

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_IREADER
#define AUD_IREADER
#ifndef __AUD_IREADER_H__
#define __AUD_IREADER_H__
#include "AUD_Space.h"
@@ -94,4 +94,4 @@ public:
virtual void read(int& length, bool& eos, sample_t* buffer)=0;
};
#endif //AUD_IREADER
#endif //__AUD_IREADER_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_IWRITER
#define AUD_IWRITER
#ifndef __AUD_IWRITER_H__
#define __AUD_IWRITER_H__
#include "AUD_Space.h"
@@ -64,4 +64,4 @@ public:
virtual void write(unsigned int length, sample_t* buffer)=0;
};
#endif //AUD_IWRITER
#endif //__AUD_IWRITER_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_JOSRESAMPLEFACTORY
#define AUD_JOSRESAMPLEFACTORY
#ifndef __AUD_JOSRESAMPLEFACTORY_H__
#define __AUD_JOSRESAMPLEFACTORY_H__
#include "AUD_MixerFactory.h"
@@ -53,4 +53,4 @@ public:
virtual AUD_Reference<AUD_IReader> createReader();
};
#endif //AUD_JOSRESAMPLEFACTORY
#endif //__AUD_JOSRESAMPLEFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_JOSRESAMPLEREADER
#define AUD_JOSRESAMPLEREADER
#ifndef __AUD_JOSRESAMPLEREADER_H__
#define __AUD_JOSRESAMPLEREADER_H__
#include "AUD_ResampleReader.h"
#include "AUD_Buffer.h"
@@ -132,4 +132,4 @@ public:
virtual void read(int& length, bool& eos, sample_t* buffer);
};
#endif //AUD_JOSRESAMPLEREADER
#endif //__AUD_JOSRESAMPLEREADER_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_LINEARRESAMPLEFACTORY
#define AUD_LINEARRESAMPLEFACTORY
#ifndef __AUD_LINEARRESAMPLEFACTORY_H__
#define __AUD_LINEARRESAMPLEFACTORY_H__
#include "AUD_MixerFactory.h"
@@ -53,4 +53,4 @@ public:
virtual AUD_Reference<AUD_IReader> createReader();
};
#endif //AUD_LINEARRESAMPLEFACTORY
#endif //__AUD_LINEARRESAMPLEFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_LINEARRESAMPLEREADER
#define AUD_LINEARRESAMPLEREADER
#ifndef __AUD_LINEARRESAMPLEREADER_H__
#define __AUD_LINEARRESAMPLEREADER_H__
#include "AUD_ResampleReader.h"
#include "AUD_Buffer.h"
@@ -83,4 +83,4 @@ public:
virtual void read(int& length, bool& eos, sample_t* buffer);
};
#endif //AUD_LINEARRESAMPLEREADER
#endif //__AUD_LINEARRESAMPLEREADER_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_MIXER
#define AUD_MIXER
#ifndef __AUD_MIXER_H__
#define __AUD_MIXER_H__
#include "AUD_ConverterFunctions.h"
#include "AUD_Buffer.h"
@@ -108,4 +108,4 @@ public:
void clear(int length);
};
#endif //AUD_MIXER
#endif //__AUD_MIXER_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_MIXERFACTORY
#define AUD_MIXERFACTORY
#ifndef __AUD_MIXERFACTORY_H__
#define __AUD_MIXERFACTORY_H__
#include "AUD_IFactory.h"
@@ -76,4 +76,4 @@ public:
AUD_Reference<AUD_IFactory> getFactory() const;
};
#endif //AUD_MIXERFACTORY
#endif //__AUD_MIXERFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_NULLDEVICE
#define AUD_NULLDEVICE
#ifndef __AUD_NULLDEVICE_H__
#define __AUD_NULLDEVICE_H__
#include "AUD_IReader.h"
#include "AUD_IDevice.h"
@@ -81,4 +81,4 @@ public:
virtual void setVolume(float volume);
};
#endif //AUD_NULLDEVICE
#endif //__AUD_NULLDEVICE_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_PYINIT
#define AUD_PYINIT
#ifndef __AUD_PYINIT_H__
#define __AUD_PYINIT_H__
#ifdef WITH_PYTHON
#include "Python.h"
@@ -48,4 +48,4 @@ extern PyObject* AUD_initPython(void);
#endif
#endif //AUD_PYINIT
#endif //__AUD_PYINIT_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_READDEVICE
#define AUD_READDEVICE
#ifndef __AUD_READDEVICE_H__
#define __AUD_READDEVICE_H__
#include "AUD_SoftwareDevice.h"
@@ -85,4 +85,4 @@ public:
void changeSpecs(AUD_Specs specs);
};
#endif //AUD_READDEVICE
#endif //__AUD_READDEVICE_H__

View File

@@ -26,8 +26,8 @@
* \ingroup audaspaceintern
*/
#ifndef AUD_REFERENCE
#define AUD_REFERENCE
#ifndef __AUD_REFERENCE_H__
#define __AUD_REFERENCE_H__
#include <map>
#include <cstddef>
@@ -244,4 +244,4 @@ inline bool operator!=(const AUD_Reference<T>& a, const AUD_Reference<U>& b)
return a.getOriginal() != b.getOriginal();
}
#endif // AUD_REFERENCE
#endif // __AUD_REFERENCE_H__

View File

@@ -27,11 +27,11 @@
*/
#ifndef AUD_RESAMPLEFACTORY
#define AUD_RESAMPLEFACTORY
#ifndef __AUD_RESAMPLEFACTORY_H__
#define __AUD_RESAMPLEFACTORY_H__
#include "AUD_MixerFactory.h"
typedef AUD_MixerFactory AUD_ResampleFactory;
#endif //AUD_RESAMPLEFACTORY
#endif //__AUD_RESAMPLEFACTORY_H__

View File

@@ -26,8 +26,8 @@
* \ingroup audaspaceintern
*/
#ifndef AUD_RESAMPLEREADER
#define AUD_RESAMPLEREADER
#ifndef __AUD_RESAMPLEREADER_H__
#define __AUD_RESAMPLEREADER_H__
#include "AUD_EffectReader.h"
@@ -63,4 +63,4 @@ public:
virtual AUD_SampleRate getRate();
};
#endif // AUD_RESAMPLEREADER
#endif // __AUD_RESAMPLEREADER_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_SEQUENCERENTRY
#define AUD_SEQUENCERENTRY
#ifndef __AUD_SEQUENCERENTRY_H__
#define __AUD_SEQUENCERENTRY_H__
#include "AUD_Reference.h"
#include "AUD_AnimateableProperty.h"
@@ -315,4 +315,4 @@ public:
void setConeVolumeOuter(float volume);
};
#endif //AUD_SEQUENCERENTRY
#endif //__AUD_SEQUENCERENTRY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_SEQUENCERFACTORY
#define AUD_SEQUENCERFACTORY
#ifndef __AUD_SEQUENCERFACTORY_H__
#define __AUD_SEQUENCERFACTORY_H__
#include "AUD_IFactory.h"
#include "AUD_AnimateableProperty.h"
@@ -210,4 +210,4 @@ public:
virtual AUD_Reference<AUD_IReader> createReader();
};
#endif //AUD_SEQUENCERFACTORY
#endif //__AUD_SEQUENCERFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_SEQUENCERHANDLE
#define AUD_SEQUENCERHANDLE
#ifndef __AUD_SEQUENCERHANDLE_H__
#define __AUD_SEQUENCERHANDLE_H__
#include "AUD_SequencerEntry.h"
#include "AUD_IHandle.h"
@@ -103,4 +103,4 @@ public:
void seek(float position);
};
#endif //AUD_SEQUENCERHANDLE
#endif //__AUD_SEQUENCERHANDLE_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_SEQUENCERREADER
#define AUD_SEQUENCERREADER
#ifndef __AUD_SEQUENCERREADER_H__
#define __AUD_SEQUENCERREADER_H__
#include "AUD_IReader.h"
#include "AUD_ReadDevice.h"
@@ -96,4 +96,4 @@ public:
virtual void read(int& length, bool& eos, sample_t* buffer);
};
#endif //AUD_SEQUENCERREADER
#endif //__AUD_SEQUENCERREADER_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_SILENCEFACTORY
#define AUD_SILENCEFACTORY
#ifndef __AUD_SILENCEFACTORY_H__
#define __AUD_SILENCEFACTORY_H__
#include "AUD_IFactory.h"
@@ -51,4 +51,4 @@ public:
virtual AUD_Reference<AUD_IReader> createReader();
};
#endif //AUD_SILENCEFACTORY
#endif //__AUD_SILENCEFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_SILENCEREADER
#define AUD_SILENCEREADER
#ifndef __AUD_SILENCEREADER_H__
#define __AUD_SILENCEREADER_H__
#include "AUD_IReader.h"
#include "AUD_Buffer.h"
@@ -63,4 +63,4 @@ public:
virtual void read(int& length, bool& eos, sample_t* buffer);
};
#endif //AUD_SILENCEREADER
#endif //__AUD_SILENCEREADER_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_SINUSFACTORY
#define AUD_SINUSFACTORY
#ifndef __AUD_SINUSFACTORY_H__
#define __AUD_SINUSFACTORY_H__
#include "AUD_IFactory.h"
@@ -69,4 +69,4 @@ public:
virtual AUD_Reference<AUD_IReader> createReader();
};
#endif //AUD_SINUSFACTORY
#endif //__AUD_SINUSFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_SINUSREADER
#define AUD_SINUSREADER
#ifndef __AUD_SINUSREADER_H__
#define __AUD_SINUSREADER_H__
#include "AUD_IReader.h"
#include "AUD_Buffer.h"
@@ -75,4 +75,4 @@ public:
virtual void read(int& length, bool& eos, sample_t* buffer);
};
#endif //AUD_SINUSREADER
#endif //__AUD_SINUSREADER_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_SOFTWAREDEVICE
#define AUD_SOFTWAREDEVICE
#ifndef __AUD_SOFTWAREDEVICE_H__
#define __AUD_SOFTWAREDEVICE_H__
#include "AUD_IDevice.h"
#include "AUD_IHandle.h"
@@ -342,4 +342,4 @@ public:
virtual void setDistanceModel(AUD_DistanceModel model);
};
#endif //AUD_SOFTWAREDEVICE
#endif //__AUD_SOFTWAREDEVICE_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_SPACE
#define AUD_SPACE
#ifndef __AUD_SPACE_H__
#define __AUD_SPACE_H__
/// The size of a format in bytes.
#define AUD_FORMAT_SIZE(format) (format & 0x0F)
@@ -253,4 +253,4 @@ typedef struct
// void* userData; - for the case it is needed someday
} AUD_Exception;
#endif //AUD_SPACE
#endif //__AUD_SPACE_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_STREAMBUFFERFACTORY
#define AUD_STREAMBUFFERFACTORY
#ifndef __AUD_STREAMBUFFERFACTORY_H__
#define __AUD_STREAMBUFFERFACTORY_H__
#include "AUD_IFactory.h"
#include "AUD_Reference.h"
@@ -67,4 +67,4 @@ public:
virtual AUD_Reference<AUD_IReader> createReader();
};
#endif //AUD_STREAMBUFFERFACTORY
#endif //__AUD_STREAMBUFFERFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_JACKDEVICE
#define AUD_JACKDEVICE
#ifndef __AUD_JACKDEVICE_H__
#define __AUD_JACKDEVICE_H__
#include "AUD_SoftwareDevice.h"
@@ -205,4 +205,4 @@ public:
bool doesPlayback();
};
#endif //AUD_JACKDEVICE
#endif //__AUD_JACKDEVICE_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_SNDFILEFACTORY
#define AUD_SNDFILEFACTORY
#ifndef __AUD_SNDFILEFACTORY_H__
#define __AUD_SNDFILEFACTORY_H__
#include "AUD_IFactory.h"
#include "AUD_Reference.h"
@@ -73,4 +73,4 @@ public:
virtual AUD_Reference<AUD_IReader> createReader();
};
#endif //AUD_SNDFILEFACTORY
#endif //__AUD_SNDFILEFACTORY_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_SNDFILEREADER
#define AUD_SNDFILEREADER
#ifndef __AUD_SNDFILEREADER_H__
#define __AUD_SNDFILEREADER_H__
#include "AUD_IReader.h"
#include "AUD_Reference.h"
@@ -125,4 +125,4 @@ public:
virtual void read(int& length, bool& eos, sample_t* buffer);
};
#endif //AUD_SNDFILEREADER
#endif //__AUD_SNDFILEREADER_H__

View File

@@ -27,8 +27,8 @@
*/
#ifndef AUD_SNDFILEWRITER
#define AUD_SNDFILEWRITER
#ifndef __AUD_SNDFILEWRITER_H__
#define __AUD_SNDFILEWRITER_H__
#include "AUD_IWriter.h"
@@ -83,4 +83,4 @@ public:
virtual void write(unsigned int length, sample_t* buffer);
};
#endif //AUD_SNDFILEWRITER
#endif //__AUD_SNDFILEWRITER_H__

View File

@@ -29,8 +29,8 @@
* \ingroup boolop
*/
#ifndef BOP_INTERFACE_H
#define BOP_INTERFACE_H
#ifndef __BOP_INTERFACE_H__
#define __BOP_INTERFACE_H__
#include "../../bsp/intern/BSP_CSGMesh.h"

View File

@@ -30,8 +30,8 @@
*/
#ifndef BOP_BBOX_H
#define BOP_BBOX_H
#ifndef __BOP_BBOX_H__
#define __BOP_BBOX_H__
#include "MT_Point3.h"
#include "BOP_MathUtils.h"

View File

@@ -30,8 +30,8 @@
*/
#ifndef BOP_BSPNODE_H
#define BOP_BSPNODE_H
#ifndef __BOP_BSPNODE_H__
#define __BOP_BSPNODE_H__
#include "MT_Plane3.h"
#include "BOP_Tag.h"

View File

@@ -30,8 +30,8 @@
*/
#ifndef BOP_BSPTREE_H
#define BOP_BSPTREE_H
#ifndef __BOP_BSPTREE_H__
#define __BOP_BSPTREE_H__
#include "BOP_BSPNode.h"
#include "BOP_Mesh.h"

View File

@@ -30,8 +30,8 @@
*/
#ifndef BOP_CHRONO_H
#define BOP_CHRONO_H
#ifndef __BOP_CHRONO_H__
#define __BOP_CHRONO_H__
#include <time.h>

View File

@@ -30,8 +30,8 @@
*/
#ifndef BOP_EDGE_H
#define BOP_EDGE_H
#ifndef __BOP_EDGE_H__
#define __BOP_EDGE_H__
#include "BOP_Indexs.h"
#include "BOP_Misc.h"

View File

@@ -30,8 +30,8 @@
*/
#ifndef BOP_FACE_H
#define BOP_FACE_H
#ifndef __BOP_FACE_H__
#define __BOP_FACE_H__
#include "BOP_Tag.h"
#include "MT_Plane3.h"

Some files were not shown because too many files have changed in this diff Show More