2013-08-08 18:54:33 +09: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-09 01:09:49 +09:00
|
|
|
#ifndef SPROUT_COMPOST_EFFECTS_HPP
|
|
|
|
#define SPROUT_COMPOST_EFFECTS_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2012-11-17 18:44:24 +09: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 13:13:13 +09:00
|
|
|
#include <sprout/compost/effects/overdriven.hpp>
|
2012-11-17 18:44:24 +09:00
|
|
|
#include <sprout/compost/effects/fuzzed.hpp>
|
|
|
|
#include <sprout/compost/effects/compressed.hpp>
|
2012-11-09 22:33:11 +09:00
|
|
|
#include <sprout/compost/effects/tremolo.hpp>
|
|
|
|
#include <sprout/compost/effects/vibrato.hpp>
|
2012-11-11 08:26:58 +09:00
|
|
|
#include <sprout/compost/effects/chorus.hpp>
|
2012-11-25 23:52:25 +09:00
|
|
|
#include <sprout/compost/effects/auto_pan.hpp>
|
2012-11-25 10:09:41 +09:00
|
|
|
#include <sprout/compost/effects/pseudo_stereo.hpp>
|
2012-11-17 18:44:24 +09:00
|
|
|
#include <sprout/compost/effects/noise_gated.hpp>
|
2012-11-25 23:52:25 +09:00
|
|
|
#include <sprout/compost/effects/vocal_cancelled.hpp>
|
2012-11-17 21:47:52 +09:00
|
|
|
#include <sprout/compost/effects/superposed.hpp>
|
2012-11-09 01:09:49 +09:00
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_COMPOST_EFFECTS_HPP
|