Mercurial > hg > ambi-plugin
view Source/SoundFieldMain.cpp @ 11:76e2e62635b4
Fixed the automation problem when a control isn't a child.
author | martinm_home <martin.morrell@eecs.qmul.ac.uk> |
---|---|
date | Thu, 27 Sep 2012 12:33:46 +0100 |
parents | 2fa9c10568d1 |
children |
line wrap: on
line source
//------------------------------------------------------------------------------------------------------- // VST Plug-Ins SDK // Version 2.4 $Date: 2006/11/13 09:08:27 $ // // Category : VST 2.x SDK Samples // Filename : adelaymain.cpp // Created by : Steinberg Media Technologies // Description : Simple Delay plugin (Mono->Stereo) // // © 2006, Steinberg Media Technologies, All Rights Reserved //------------------------------------------------------------------------------------------------------- #ifndef __SoundField__ #include "SoundField.h" #endif //------------------------------------------------------------------------------------------------------- AudioEffect* createEffectInstance (audioMasterCallback audioMaster) //Start a new instance of our effect { return new SoundField (audioMaster); }