annotate swig/aim_modules.i @ 30:5b1586a234f1

-More updates for EC2
author tomwalters
date Wed, 24 Feb 2010 15:08:55 +0000
parents fff25824d1d1
children 9122efd2b227
rev   line source
tomwalters@5 1 // Copyright 2010, Thomas Walters
tomwalters@0 2 //
tomwalters@0 3 // AIM-C: A C++ implementation of the Auditory Image Model
tomwalters@0 4 // http://www.acousticscale.org/AIMC
tomwalters@0 5 //
tomwalters@0 6 // This program is free software: you can redistribute it and/or modify
tomwalters@0 7 // it under the terms of the GNU General Public License as published by
tomwalters@0 8 // the Free Software Foundation, either version 3 of the License, or
tomwalters@0 9 // (at your option) any later version.
tomwalters@0 10 //
tomwalters@0 11 // This program is distributed in the hope that it will be useful,
tomwalters@0 12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
tomwalters@0 13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
tomwalters@0 14 // GNU General Public License for more details.
tomwalters@0 15 //
tomwalters@0 16 // You should have received a copy of the GNU General Public License
tomwalters@0 17 // along with this program. If not, see <http://www.gnu.org/licenses/>.
tomwalters@0 18
tomwalters@1 19 %module aimc
tomwalters@1 20 %include "std_string.i"
tomwalters@0 21 %{
tomwalters@0 22 #include "Support/Common.h"
tomwalters@0 23 #include "Support/Module.h"
tomwalters@0 24 #include "Support/Parameters.h"
tomwalters@0 25 #include "Support/SignalBank.h"
tomwalters@13 26 #include "Modules/BMM/ModuleGammatone.h"
tomwalters@13 27 #include "Modules/BMM/ModulePZFC.h"
tomwalters@13 28 #include "Modules/NAP/ModuleHCL.h"
tomwalters@13 29 #include "Modules/Strobes/ModuleParabola.h"
tomwalters@13 30 #include "Modules/SAI/ModuleSAI.h"
tomwalters@13 31 #include "Modules/SSI/ModuleSSI.h"
tomwalters@13 32 #include "Modules/Profile/ModuleSlice.h"
tomwalters@20 33 #include "Modules/Profile/ModuleScaler.h"
tomwalters@0 34 #include "Modules/Features/ModuleGaussians.h"
tomwalters@13 35 #include "Modules/Output/FileOutputHTK.h"
tomwalters@0 36 %}
tomwalters@0 37
tomwalters@13 38 %include "Support/Parameters.h"
tomwalters@13 39 %include "Support/SignalBank.h"
tomwalters@13 40 %include "Support/Module.h"
tomwalters@13 41 %include "Modules/BMM/ModuleGammatone.h"
tomwalters@13 42 %include "Modules/BMM/ModulePZFC.h"
tomwalters@13 43 %include "Modules/NAP/ModuleHCL.h"
tomwalters@13 44 %include "Modules/Strobes/ModuleParabola.h"
tomwalters@13 45 %include "Modules/SAI/ModuleSAI.h"
tomwalters@13 46 %include "Modules/SSI/ModuleSSI.h"
tomwalters@13 47 %include "Modules/Profile/ModuleSlice.h"
tomwalters@20 48 %include "Modules/Profile/ModuleScaler.h"
tomwalters@13 49 %include "Modules/Features/ModuleGaussians.h"
tomwalters@13 50 %include "Modules/Output/FileOutputHTK.h"