Lumiera  0.pre.03
»edit your freedom«
parameter.hpp
Go to the documentation of this file.
1 /*
2  PARAMETER.hpp - representation of an automatable effect/plugin parameter
3 
4  Copyright (C)
5  2008, Hermann Vosseler <Ichthyostega@web.de>
6 
7   **Lumiera** is free software; you can redistribute it and/or modify it
8   under the terms of the GNU General Public License as published by the
9   Free Software Foundation; either version 2 of the License, or (at your
10   option) any later version. See the file COPYING for further details.
11 
12 */
13 
14 
22 #ifndef STEAM_PROC_MOBJECT_PARAMETER_H
23 #define STEAM_PROC_MOBJECT_PARAMETER_H
24 
25 
26 
27 
28 namespace steam {
29 namespace mobject {
30 
31  template<class VAL> class ParamProvider;
32 
33 
39  template<class VAL>
40  class Parameter
41  {
42  public:
43  VAL getValue () ;
44 
45  protected:
46  ParamProvider<VAL>* provider;
47 
48  };
49 
50 
51 
52 }} // namespace steam::mobject
53 #endif /*STEAM_PROC_MOBJECT_PARAMETER_H*/
Descriptor and access object for a plugin parameter.
Definition: parameter.hpp:40
Steam-Layer implementation namespace root.
A facility to get the actual value of a plugin/effect parameter.
Definition: parameter.hpp:31