diff options
Diffstat (limited to 'src/live.hpp')
| -rw-r--r-- | src/live.hpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/live.hpp b/src/live.hpp index 33f3b3d..399d856 100644 --- a/src/live.hpp +++ b/src/live.hpp @@ -18,7 +18,8 @@ class LiveOutput { private: /* configuration */ - const Configuration configuration_; + std::size_t width_; + bool is_horizontal_; Renderer renderer_; /* live window */ @@ -38,7 +39,7 @@ public: * @param cmap Color map instance to use. * @param vmap Value map instance to use. */ - LiveOutput(const Configuration& conf, const ColorMap& cmap, const ValueMap& vmap); + LiveOutput(const Configuration& conf); /** * Add a FFT window to the history and render it. @@ -59,4 +60,4 @@ public: void Render(); }; -#endif
\ No newline at end of file +#endif |
