2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
|
|
|
Copyright (c) 2011-2013 Bolero MURAKAMI
|
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
=============================================================================*/
|
2012-11-08 16:09:49 +00:00
|
|
|
#ifndef SPROUT_COMPOST_EFFECTS_HPP
|
|
|
|
#define SPROUT_COMPOST_EFFECTS_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2012-11-17 09:44:24 +00:00
|
|
|
#include <sprout/compost/effects/clipped.hpp>
|
|
|
|
#include <sprout/compost/effects/rectified.hpp>
|
|
|
|
#include <sprout/compost/effects/changed_volume.hpp>
|
|
|
|
#include <sprout/compost/effects/reverbed.hpp>
|
|
|
|
#include <sprout/compost/effects/distorted.hpp>
|
2012-11-18 04:13:13 +00:00
|
|
|
#include <sprout/compost/effects/overdriven.hpp>
|
2012-11-17 09:44:24 +00:00
|
|
|
#include <sprout/compost/effects/fuzzed.hpp>
|
|
|
|
#include <sprout/compost/effects/compressed.hpp>
|
2012-11-09 13:33:11 +00:00
|
|
|
#include <sprout/compost/effects/tremolo.hpp>
|
|
|
|
#include <sprout/compost/effects/vibrato.hpp>
|
2012-11-10 23:26:58 +00:00
|
|
|
#include <sprout/compost/effects/chorus.hpp>
|
2012-11-25 14:52:25 +00:00
|
|
|
#include <sprout/compost/effects/auto_pan.hpp>
|
2012-11-25 01:09:41 +00:00
|
|
|
#include <sprout/compost/effects/pseudo_stereo.hpp>
|
2012-11-17 09:44:24 +00:00
|
|
|
#include <sprout/compost/effects/noise_gated.hpp>
|
2012-11-25 14:52:25 +00:00
|
|
|
#include <sprout/compost/effects/vocal_cancelled.hpp>
|
2012-11-17 12:47:52 +00:00
|
|
|
#include <sprout/compost/effects/superposed.hpp>
|
2012-11-08 16:09:49 +00:00
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_COMPOST_EFFECTS_HPP
|