Lumiera 0.pre.04~rc.1
»edit your freedom«
Loading...
Searching...
No Matches
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
28namespace steam {
29namespace mobject {
30
31 template<class VAL> class ParamProvider;
32
33
39 template<class VAL>
41 {
42 public:
43 VAL getValue () ;
44
45 protected:
47
48 };
49
50
51
52}} // namespace steam::mobject
53#endif /*STEAM_PROC_MOBJECT_PARAMETER_H*/
A facility to get the actual value of a plugin/effect parameter.
Descriptor and access object for a plugin parameter.
Definition parameter.hpp:41
ParamProvider< VAL > * provider
Definition parameter.hpp:46
Steam-Layer implementation namespace root.