Lumiera 0.pre.04~rc.1
»edit your freedom«
Loading...
Searching...
No Matches
paramprovider.hpp
Go to the documentation of this file.
1/*
2 PARAMPROVIDER.hpp - interface denoting a source for actual Parameter values
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_MOBJECT_PARAMPROVIDER_H
23#define STEAM_MOBJECT_PARAMPROVIDER_H
24
25
26
27namespace steam {
28namespace mobject {
29
30 template<class VAL> class Parameter;
31 template<class VAL> class Interpolator;
32
33
34
38 template<class VAL>
40 {
41 protected:
44
45
46 public:
47 virtual VAL getValue () ;
48 };
49
50
51
52}} // namespace steam::mobject
53#endif /*STEAM_MOBJECT_PARAMPROVIDER_H*/
A facility to get the actual value of a plugin/effect parameter.
Interpolator< VAL > * ipo
Descriptor and access object for a plugin parameter.
Definition parameter.hpp:41
Provides the implementation for getting the actual value of a time varying or automated effect/plugin...
Steam-Layer implementation namespace root.