annotate trunk/swig/aim_modules.i @ 318:30dde71d0230

- Modified licence from GPL 3 to Apache v2
author tomwalters
date Tue, 30 Mar 2010 22:06:24 +0000
parents ed91095d9240
children 4ee5bb246f60
rev   line source
tomwalters@277 1 // Copyright 2010, Thomas Walters
tomwalters@268 2 //
tomwalters@268 3 // AIM-C: A C++ implementation of the Auditory Image Model
tomwalters@268 4 // http://www.acousticscale.org/AIMC
tomwalters@268 5 //
tomwalters@318 6 // Licensed under the Apache License, Version 2.0 (the "License");
tomwalters@318 7 // you may not use this file except in compliance with the License.
tomwalters@318 8 // You may obtain a copy of the License at
tomwalters@268 9 //
tomwalters@318 10 // http://www.apache.org/licenses/LICENSE-2.0
tomwalters@268 11 //
tomwalters@318 12 // Unless required by applicable law or agreed to in writing, software
tomwalters@318 13 // distributed under the License is distributed on an "AS IS" BASIS,
tomwalters@318 14 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
tomwalters@318 15 // See the License for the specific language governing permissions and
tomwalters@318 16 // limitations under the License.
tomwalters@268 17
tomwalters@273 18 %module aimc
tomwalters@273 19 %include "std_string.i"
tomwalters@268 20 %{
tomwalters@268 21 #include "Support/Common.h"
tomwalters@268 22 #include "Support/Module.h"
tomwalters@268 23 #include "Support/Parameters.h"
tomwalters@268 24 #include "Support/SignalBank.h"
tomwalters@285 25 #include "Modules/BMM/ModuleGammatone.h"
tomwalters@285 26 #include "Modules/BMM/ModulePZFC.h"
tomwalters@285 27 #include "Modules/NAP/ModuleHCL.h"
tomwalters@285 28 #include "Modules/Strobes/ModuleParabola.h"
tomwalters@305 29 #include "Modules/Strobes/ModuleLocalMax.h"
tomwalters@285 30 #include "Modules/SAI/ModuleSAI.h"
tomwalters@285 31 #include "Modules/SSI/ModuleSSI.h"
tomwalters@305 32 #include "Modules/SNR/ModuleNoise.h"
tomwalters@285 33 #include "Modules/Profile/ModuleSlice.h"
tomwalters@292 34 #include "Modules/Profile/ModuleScaler.h"
tomwalters@268 35 #include "Modules/Features/ModuleGaussians.h"
tomwalters@285 36 #include "Modules/Output/FileOutputHTK.h"
tomwalters@268 37 %}
tomwalters@268 38
tomwalters@285 39 %include "Support/Parameters.h"
tomwalters@285 40 %include "Support/SignalBank.h"
tomwalters@285 41 %include "Support/Module.h"
tomwalters@285 42 %include "Modules/BMM/ModuleGammatone.h"
tomwalters@285 43 %include "Modules/BMM/ModulePZFC.h"
tomwalters@285 44 %include "Modules/NAP/ModuleHCL.h"
tomwalters@285 45 %include "Modules/Strobes/ModuleParabola.h"
tomwalters@305 46 %include "Modules/Strobes/ModuleLocalMax.h"
tomwalters@285 47 %include "Modules/SAI/ModuleSAI.h"
tomwalters@285 48 %include "Modules/SSI/ModuleSSI.h"
tomwalters@305 49 %include "Modules/SNR/ModuleNoise.h"
tomwalters@285 50 %include "Modules/Profile/ModuleSlice.h"
tomwalters@292 51 %include "Modules/Profile/ModuleScaler.h"
tomwalters@285 52 %include "Modules/Features/ModuleGaussians.h"
tomwalters@285 53 %include "Modules/Output/FileOutputHTK.h"