Stereo.cpp (597B)
1 /* 2 ZynAddSubFX - a software synthesizer 3 4 Stereo.cpp - Object for storing a pair of objects 5 Copyright (C) 2009-2009 Mark McCurry 6 Author: Mark McCurry 7 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. 12 */ 13 14 namespace zyn { 15 16 template<class T> 17 Stereo<T>::Stereo(const T &left, const T &right) 18 :l(left), r(right) 19 {} 20 21 template<class T> 22 Stereo<T>::Stereo(const T &val) 23 :l(val), r(val) 24 {} 25 26 }