Lumiera  0.pre.03
»edit your freedom«
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 
27 namespace steam {
28 namespace mobject {
29 
30  template<class VAL> class Parameter;
31  template<class VAL> class Interpolator;
32 
33 
34 
38  template<class VAL>
39  class ParamProvider
40  {
41  protected:
42  Parameter<VAL>* param;
43  Interpolator<VAL>* ipo;
44 
45 
46  public:
47  virtual VAL getValue () ;
48  };
49 
50 
51 
52 }} // namespace steam::mobject
53 #endif /*STEAM_MOBJECT_PARAMPROVIDER_H*/
Steam-Layer implementation namespace root.