summaryrefslogtreecommitdiff
path: root/public.sdk/samples/vst2.x/adelay/adelaymain.cpp
diff options
context:
space:
mode:
authorpepper <pepper@chimecrisis.com>2015-01-31 21:41:28 -0800
committerpepper <pepper@chimecrisis.com>2015-01-31 21:41:28 -0800
commit97587996ee9db30ce00190bdcedd8210490b99f5 (patch)
treed8554969ac496be3a1b02a159f2a4b5b79f9492e /public.sdk/samples/vst2.x/adelay/adelaymain.cpp
backup vst 2.4
Diffstat (limited to 'public.sdk/samples/vst2.x/adelay/adelaymain.cpp')
-rw-r--r--public.sdk/samples/vst2.x/adelay/adelaymain.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/public.sdk/samples/vst2.x/adelay/adelaymain.cpp b/public.sdk/samples/vst2.x/adelay/adelaymain.cpp
new file mode 100644
index 0000000..ea9895e
--- /dev/null
+++ b/public.sdk/samples/vst2.x/adelay/adelaymain.cpp
@@ -0,0 +1,22 @@
+//-------------------------------------------------------------------------------------------------------
+// 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 __adelay__
+#include "adelay.h"
+#endif
+
+//-------------------------------------------------------------------------------------------------------
+AudioEffect* createEffectInstance (audioMasterCallback audioMaster)
+{
+ return new ADelay (audioMaster);
+}
+