tomwalters@5: // Copyright 2010, Thomas Walters tomwalters@0: // tomwalters@0: // AIM-C: A C++ implementation of the Auditory Image Model tomwalters@0: // http://www.acousticscale.org/AIMC tomwalters@0: // tomwalters@0: // This program is free software: you can redistribute it and/or modify tomwalters@0: // it under the terms of the GNU General Public License as published by tomwalters@0: // the Free Software Foundation, either version 3 of the License, or tomwalters@0: // (at your option) any later version. tomwalters@0: // tomwalters@0: // This program is distributed in the hope that it will be useful, tomwalters@0: // but WITHOUT ANY WARRANTY; without even the implied warranty of tomwalters@0: // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the tomwalters@0: // GNU General Public License for more details. tomwalters@0: // tomwalters@0: // You should have received a copy of the GNU General Public License tomwalters@0: // along with this program. If not, see . tomwalters@0: tomwalters@1: %module aimc tomwalters@1: %include "std_string.i" tomwalters@0: %{ tomwalters@0: #include "Support/Common.h" tomwalters@0: #include "Support/Module.h" tomwalters@0: #include "Support/Parameters.h" tomwalters@0: #include "Support/SignalBank.h" tomwalters@13: #include "Modules/BMM/ModuleGammatone.h" tomwalters@13: #include "Modules/BMM/ModulePZFC.h" tomwalters@13: #include "Modules/NAP/ModuleHCL.h" tomwalters@13: #include "Modules/Strobes/ModuleParabola.h" tomwalters@13: #include "Modules/SAI/ModuleSAI.h" tomwalters@13: #include "Modules/SSI/ModuleSSI.h" tomwalters@13: #include "Modules/Profile/ModuleSlice.h" tomwalters@20: #include "Modules/Profile/ModuleScaler.h" tomwalters@0: #include "Modules/Features/ModuleGaussians.h" tomwalters@13: #include "Modules/Output/FileOutputHTK.h" tomwalters@0: %} tomwalters@0: tomwalters@13: %include "Support/Parameters.h" tomwalters@13: %include "Support/SignalBank.h" tomwalters@13: %include "Support/Module.h" tomwalters@13: %include "Modules/BMM/ModuleGammatone.h" tomwalters@13: %include "Modules/BMM/ModulePZFC.h" tomwalters@13: %include "Modules/NAP/ModuleHCL.h" tomwalters@13: %include "Modules/Strobes/ModuleParabola.h" tomwalters@13: %include "Modules/SAI/ModuleSAI.h" tomwalters@13: %include "Modules/SSI/ModuleSSI.h" tomwalters@13: %include "Modules/Profile/ModuleSlice.h" tomwalters@20: %include "Modules/Profile/ModuleScaler.h" tomwalters@13: %include "Modules/Features/ModuleGaussians.h" tomwalters@13: %include "Modules/Output/FileOutputHTK.h"