LMMS
Loading...
Searching...
No Matches
Stereo.h
Go to the documentation of this file.
1/*
2 ZynAddSubFX - a software synthesizer
3
4 Stereo.h - 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 modify
9 it under the terms of version 2 of the GNU General Public License
10 as published by the Free Software Foundation.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License (version 2 or later) for more details.
16
17 You should have received a copy of the GNU General Public License (version 2)
18 along with this program; if not, write to the Free Software Foundation,
19 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20*/
21#ifndef STEREO_H
22#define STEREO_H
23
24template<class T>
25struct Stereo {
26 public:
27 Stereo(const T &left, const T &right);
28
31 Stereo(const T &val);
33
34 Stereo<T> &operator=(const Stereo<T> &smp);
35
36 //data
37 T l, r;
38};
39#include "Stereo.cpp"
40#endif
struct @217364254171237306365336346027204030346122123370::@024112272203321272161030127354157140271147144314 left
struct @217364254171237306365336346027204030346122123370::@024112272203321272161030127354157140271147144314 right
int val
Definition jpeglib.h:956
Definition Stereo.h:25
T r
Definition Stereo.h:37
Stereo(const T &left, const T &right)
Definition Stereo.cpp:23
T l
Definition Stereo.h:37
~Stereo()
Definition Stereo.h:32
Stereo< T > & operator=(const Stereo< T > &smp)
Definition Stereo.cpp:33