Change ALSA device default to 'default' from hw:0
[zynaddsubfx-code.git] / src / Misc / Stereo.cpp
blob131586f5cc76d79ea6d850b22d355c2c1674adfc
1 /*
2 ZynAddSubFX - a software synthesizer
4 Stereo.cpp - Object for storing a pair of objects
5 Copyright (C) 2009-2009 Mark McCurry
6 Author: Mark McCurry
8 This program is free software; you can redistribute it and/or
9 modify it under the terms of the GNU General Public License
10 as published by the Free Software Foundation; either version 2
11 of the License, or (at your option) any later version.
14 namespace zyn {
16 template<class T>
17 Stereo<T>::Stereo(const T &left, const T &right)
18 :l(left), r(right)
21 template<class T>
22 Stereo<T>::Stereo(const T &val)
23 :l(val), r(val)