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