More noncopyable.
[dcpomatic.git] / src / lib / sound_processor.h
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /** @file src/sound_processor.h
21  *  @brief A class to describe a sound processor.
22  */
23
24 #ifndef DCPOMATIC_SOUND_PROCESSOR_H
25 #define DCPOMATIC_SOUND_PROCESSOR_H
26
27 #include <string>
28 #include <vector>
29 #include <boost/utility.hpp>
30
31 /** @class SoundProcessor
32  *  @brief Class to describe a sound processor.
33  */
34 class SoundProcessor : public boost::noncopyable
35 {
36 public:
37         SoundProcessor (std::string i, std::string n);
38
39         virtual float db_for_fader_change (float from, float to) const = 0;
40
41         /** @return id for our use */
42         std::string id () const {
43                 return _id;
44         }
45
46         /** @return user-visible name for this sound processor */
47         std::string name () const {
48                 return _name;
49         }
50         
51         static std::vector<SoundProcessor const *> all ();
52         static void setup_sound_processors ();
53         static SoundProcessor const * from_id (std::string id);
54         static SoundProcessor const * from_index (int);
55         static int as_index (SoundProcessor const *);
56
57 private:
58         /** id for our use */
59         std::string _id;
60         /** user-visible name for this sound processor */
61         std::string _name;
62
63         /** sll available sound processors */
64         static std::vector<SoundProcessor const *> _sound_processors;
65 };
66
67 #endif