pl-nk v0.4.5
Plonk|Plink|Plank are a set of cross-platform C/C++ frameworks for audio software development
plank.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 
00040 #ifndef PLANK_H
00041 #define PLANK_H
00042 
00043 /* 14/12/2013 
00044  http://cloc.sourceforge.net v 1.52  T=0.5 s (190.0 files/s, 81070.0 lines/s)
00045  -------------------------------------------------------------------------------
00046  Language                     files          blank        comment           code
00047  -------------------------------------------------------------------------------
00048  C                               40           5435           2871          18951
00049  C/C++ Header                    54           2550           4379           6284
00050  C++                              1             11             31             23
00051  -------------------------------------------------------------------------------
00052  SUM:                            95           7996           7281          25258
00053  -------------------------------------------------------------------------------
00054  */
00055 
00056 // this must be before the standard header incase we want it different in user code?
00057 #define PLANK_API 
00058 
00059 #include "core/plank_StandardHeader.h"
00060 #include "core/plank_Lock.h"
00061 #include "core/plank_SpinLock.h"
00062 #include "core/plank_ThreadSpinLock.h"
00063 #include "core/plank_Thread.h"
00064 #include "core/plank_LockFreeMemory.h"
00065 
00066 #include "containers/atomic/plank_Atomic.h"
00067 #include "containers/plank_ContainersMisc.h"
00068 #include "containers/plank_SharedPtr.h"
00069 #include "containers/plank_DynamicArray.h"
00070 #include "containers/plank_LockFreeDynamicArray.h"
00071 #include "containers/plank_LockFreeQueue.h"
00072 #include "containers/plank_LockFreeStack.h"
00073 #include "containers/plank_SimpleQueue.h"
00074 #include "containers/plank_SimpleStack.h"
00075 #include "containers/plank_SimpleLinkedList.h"
00076 #include "containers/plank_SimpleMap.h"
00077 #include "containers/plank_LockFreeLinkedListElement.h"
00078 #include "containers/plank_ThreadLocalStorage.h"
00079 
00080 #include "maths/plank_Maths.h"
00081 #include "maths/vectors/plank_Vectors.h"
00082 
00083 #include "misc/nn/plank_NeuralNode.h"
00084 #include "misc/nn/plank_NeuralLayer.h"
00085 #include "misc/nn/plank_NeuralNetwork.h"
00086 
00087 #include "misc/json/plank_JSON.h"
00088 #include "misc/base64/plank_Base64.h"
00089 #include "misc/zip/plank_Zip.h"
00090 
00091 #include "files/plank_Path.h"
00092 #include "files/plank_File.h"
00093 #include "files/plank_MultiFileReader.h"
00094 #include "files/plank_IffFileReader.h"
00095 #include "files/plank_IffFileWriter.h"
00096 
00097 #include "files/audio/plank_AudioFileCommon.h"
00098 #include "files/audio/plank_AudioFileReader.h"
00099 #include "files/audio/plank_AudioFileWriter.h"
00100 #include "files/audio/plank_AudioFileMetaData.h"
00101 #include "files/audio/plank_AudioFileCuePoint.h"
00102 #include "files/audio/plank_AudioFileRegion.h"
00103 
00104 #include "random/plank_RNG.h"
00105 #include "fft/plank_FFT.h"
00106 
00119 //-------------------------------------------------------------------------plank
00183 //-------------------------------------------------------------------------plank
00184 
00185 
00186 //------------------------------------------------------------plank/fundamentals
00190 //------------------------------------------------------------plank/fundamentals
00191 
00192 
00193 
00194 #endif // PLANK_H
 All Classes Functions Typedefs Enumerations Enumerator Properties