pl-nk v0.4.5
Plonk|Plink|Plank are a set of cross-platform C/C++ frameworks for audio software development
plonk_Headers.h
00001 /*
00002  -------------------------------------------------------------------------------
00003  This file is part of the Plink, Plonk, Plank libraries
00004   by Martin Robinson
00005  
00006  http://code.google.com/p/pl-nk/
00007  
00008  Copyright University of the West of England, Bristol 2011-14
00009  All rights reserved.
00010  
00011  Redistribution and use in source and binary forms, with or without
00012  modification, are permitted provided that the following conditions are met:
00013  
00014  * Redistributions of source code must retain the above copyright
00015    notice, this list of conditions and the following disclaimer.
00016  * Redistributions in binary form must reproduce the above copyright
00017    notice, this list of conditions and the following disclaimer in the
00018    documentation and/or other materials provided with the distribution.
00019  * Neither the name of University of the West of England, Bristol nor 
00020    the names of its contributors may be used to endorse or promote products
00021    derived from this software without specific prior written permission.
00022  
00023  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
00024  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
00025  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 
00026  DISCLAIMED. IN NO EVENT SHALL UNIVERSITY OF THE WEST OF ENGLAND, BRISTOL BE 
00027  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 
00028  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE 
00029  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 
00030  HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 
00031  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT 
00032  OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
00033  
00034  This software makes use of third party libraries. For more information see:
00035  doc/license.txt included in the distribution.
00036  -------------------------------------------------------------------------------
00037  */
00038 
00039 #ifndef PLONKHEADERS_H
00040 #define PLONKHEADERS_H
00041 
00042 #include "plonk_CoreForwardDeclarations.h"
00043 #include "plonk_Memory.h"
00044 #include "plonk_SmartPointer.h"
00045 #include "plonk_WeakPointer.h"
00046 #include "plonk_SmartPointerContainer.h"
00047 #include "plonk_WeakPointerContainer.h"
00048 #include "plonk_Deleter.h"
00049 #include "plonk_Sender.h"
00050 #include "plonk_SenderContainer.h"
00051 #include "plonk_Receiver.h"
00052 #include "plonk_TypeUtility.h"
00053 #include "plonk_Lock.h"
00054 #include "plonk_Thread.h"
00055 
00056 #include "../containers/plonk_ContainerForwardDeclarations.h"
00057 #include "../containers/plonk_Atomic.h"
00058 #include "../containers/plonk_DynamicContainer.h"
00059 #include "../containers/plonk_ObjectArrayInternal.h"
00060 #include "../containers/plonk_SimpleArray.h"
00061 #include "../containers/plonk_SimpleStack.h"
00062 #include "../containers/plonk_SimpleQueue.h"
00063 #include "../containers/plonk_SimpleLinkedList.h"
00064 #include "../containers/plonk_ObjectArray.h"
00065 #include "../containers/plonk_ObjectArray2D.h"
00066 #include "../containers/plonk_NumericalArray.h"
00067 #include "../containers/plonk_NumericalArray2D.h"
00068 #include "../containers/plonk_Collections.h"
00069 #include "../containers/plonk_Text.h"
00070 #include "../containers/plonk_TextArray.h"
00071 #include "../containers/plonk_BreakPoints.h"
00072 #include "../containers/plonk_Wavetable.h"
00073 #include "../containers/plonk_Signal.h"
00074 #include "../containers/plonk_Int24.h"
00075 #include "../containers/plonk_Fix.h"
00076 #include "../containers/plonk_Function.h"
00077 #include "../containers/plonk_LockFreeQueue.h"
00078 #include "../containers/plonk_LockFreeStack.h"
00079 #include "../containers/plonk_ObjectMemoryDeferFree.h"
00080 #include "../containers/plonk_ObjectMemoryPools.h"
00081 
00082 #include "../containers/variables/plonk_VariableForwardDeclarations.h"
00083 #include "../containers/variables/plonk_Variable.h"
00084 #include "../containers/variables/plonk_VariableInternal.h"
00085 #include "../containers/variables/plonk_BinaryOpVariable.h"
00086 #include "../containers/variables/plonk_UnaryOpVariable.h"
00087 #include "../containers/variables/plonk_TypeVariable.h"
00088 #include "../containers/variables/plonk_ShapeVariable.h"
00089 #include "../containers/variables/plonk_PatternVariable.h"
00090 
00091 #include "../maths/plonk_Constants.h"
00092 #include "../maths/plonk_Endian.h"
00093 
00094 #include "../random/plonk_RNG.h"
00095 
00096 #include "../files/plonk_TextFile.h"
00097 #include "../files/plonk_BinaryFile.h"
00098 #include "../files/plonk_FilePath.h"
00099 
00100 #include "../files/audio/plonk_AudioFileMetaData.h"
00101 #include "../files/audio/plonk_AudioFileReader.h"
00102 #include "../files/audio/plonk_AudioFileWriter.h"
00103 
00104 #include "../misc/plonk_NeuralNetwork.h"
00105 #include "../misc/plonk_JSON.h"
00106 #include "../misc/plonk_Base64.h"
00107 #include "../misc/plonk_Zip.h"
00108 
00109 #include "../fft/plonk_FFTEngine.h"
00110 #include "../fft/plonk_FFTEngineInternal.h"
00111 
00112 #include "../graph/plonk_GraphForwardDeclarations.h"
00113 
00114 #include "../graph/channel/plonk_Channel.h"
00115 #include "../graph/channel/plonk_ChannelInternalBase.h"
00116 #include "../graph/channel/plonk_ChannelInternal.h"
00117 #include "../graph/channel/plonk_ChannelData.h"
00118 #include "../graph/channel/plonk_ProxyChannelInternal.h"
00119 #include "../graph/channel/plonk_ProxyOwnerChannelInternal.h"
00120 
00121 
00122 #include "../graph/utility/plonk_InputDictionary.h"
00123 #include "../graph/utility/plonk_BlockSize.h"
00124 #include "../graph/utility/plonk_SampleRate.h"
00125 #include "../graph/utility/plonk_Bus.h"
00126 #include "../graph/utility/plonk_TimeStamp.h"
00127 #include "../graph/utility/plonk_ProcessInfo.h"
00128 #include "../graph/utility/plonk_ProcessInfoInternal.h"
00129 
00130 #include "../graph/info/plonk_InfoHeaders.h"
00131 
00132 #include "../graph/plonk_Unit.h"
00133 
00134 #include "../graph/converters/plonk_TypeChannel.h"
00135 #include "../graph/converters/plonk_ResampleChannel.h"
00136 #include "../graph/converters/plonk_OverlapMakeChannel.h"
00137 #include "../graph/converters/plonk_OverlapMixChannel.h"
00138 #include "../graph/converters/plonk_TaskChannel.h"
00139 #include "../graph/converters/plonk_ReblockChannel.h"
00140 
00141 
00142 #include "../graph/simple/plonk_BinaryOpChannel.h"
00143 #include "../graph/simple/plonk_ConstantChannel.h"
00144 #include "../graph/simple/plonk_LinearPanChannel.h"
00145 #include "../graph/simple/plonk_UnaryOpChannel.h"
00146 #include "../graph/simple/plonk_MulAddChannel.h"
00147 #include "../graph/simple/plonk_BusReadChannel.h"
00148 #include "../graph/simple/plonk_BusWriteChannel.h"
00149 #include "../graph/simple/plonk_Mixers.h"
00150 #include "../graph/simple/plonk_BlockChannel.h"
00151 #include "../graph/simple/plonk_VariableChannel.h"
00152 #include "../graph/simple/plonk_AtomicVariableChannel.h"
00153 #include "../graph/simple/plonk_PatchChannel.h"
00154 #include "../graph/simple/plonk_QueueChannel.h"
00155 
00156 #include "../graph/generators/plonk_Saw.h"
00157 #include "../graph/generators/plonk_WhiteNoise.h"
00158 #include "../graph/generators/plonk_Table.h"
00159 #include "../graph/generators/plonk_SignalPlay.h"
00160 #include "../graph/generators/plonk_SignalRead.h"
00161 #include "../graph/generators/plonk_FilePlay.h"
00162 #include "../graph/generators/plonk_Impulses.h"
00163 #include "../graph/generators/plonk_Lookup.h"
00164 
00165 #include "../graph/filters/plonk_FilterForwardDeclarations.h"
00166 #include "../graph/filters/plonk_FilterTypes.h"
00167 #include "../graph/filters/plonk_FilterForms.h"
00168 #include "../graph/filters/plonk_FilterShapes.h"
00169 #include "../graph/filters/plonk_Filter.h"
00170 #include "../graph/filters/plonk_FilterCoeffs1Param.h"
00171 #include "../graph/filters/plonk_FilterCoeffs2Param.h"
00172 #include "../graph/filters/plonk_FilterCoeffs3Param.h"
00173 #include "../graph/filters/plonk_FilterShortcuts.h"
00174 #include "../graph/filters/shapes/plonk_FilterShapesSimple.h"
00175 #include "../graph/filters/shapes/plonk_FilterShapesP2Z2.h"
00176 #include "../graph/filters/shapes/plonk_FilterShapesB.h"
00177 
00178 #include "../graph/delay/plonk_DelayForwardDeclarations.h"
00179 #include "../graph/delay/plonk_DelayBase.h"
00180 #include "../graph/delay/plonk_DelayTypes.h"
00181 #include "../graph/delay/plonk_DelayForms.h"
00182 #include "../graph/delay/plonk_DelayFormDelay.h"
00183 #include "../graph/delay/plonk_DelayFormCombDecay.h"
00184 #include "../graph/delay/plonk_DelayFormCombFB.h"
00185 #include "../graph/delay/plonk_DelayFormCombFilter1Param.h"
00186 #include "../graph/delay/plonk_DelayFormAllpassDecay.h"
00187 #include "../graph/delay/plonk_DelayFormAllpassFFFB.h"
00188 #include "../graph/delay/plonk_Delay1Param.h"
00189 #include "../graph/delay/plonk_Delay2Param.h"
00190 #include "../graph/delay/plonk_Delay3Param.h"
00191 #include "../graph/delay/plonk_Delay4Param.h"
00192 
00193 #include "../graph/control/plonk_EnvelopeChannel.h"
00194 #include "../graph/control/plonk_TriggerChannel.h"
00195 #include "../graph/control/plonk_SchmidtChannel.h"
00196 
00197 #include "../graph/fft/plonk_FFTChannel.h"
00198 #include "../graph/fft/plonk_IFFTChannel.h"
00199 #include "../graph/fft/plonk_ZMulChannel.h"
00200 
00201 #include "../hosts/plonk_AudioHostBase.h"
00202 
00203 #endif // PLONKHEADERS_H
 All Classes Functions Typedefs Enumerations Enumerator Properties