diff options
author | andreas128 <Andreas> | 2017-04-01 12:13:01 +0100 |
---|---|---|
committer | andreas128 <Andreas> | 2017-04-02 11:42:38 +0100 |
commit | 89ac4f53d0a10d1c07980fae5ddeb8818e7b9733 (patch) | |
tree | 01efcbbe06769e94e1a1acd3bc66299f01b30c2b /src/MemlessPoly.h | |
parent | 6243a4fac50a9c8690e13c2df65c058e69fdcae5 (diff) | |
download | dabmod-89ac4f53d0a10d1c07980fae5ddeb8818e7b9733.tar.gz dabmod-89ac4f53d0a10d1c07980fae5ddeb8818e7b9733.tar.bz2 dabmod-89ac4f53d0a10d1c07980fae5ddeb8818e7b9733.zip |
Fix file reading
Diffstat (limited to 'src/MemlessPoly.h')
-rw-r--r-- | src/MemlessPoly.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/MemlessPoly.h b/src/MemlessPoly.h index fe372d8..33ae202 100644 --- a/src/MemlessPoly.h +++ b/src/MemlessPoly.h @@ -63,6 +63,9 @@ public: virtual const std::string get_parameter( const std::string& parameter) const; +//TODO to protected + std::vector<float> m_taps; + protected: int internal_process(Buffer* const dataIn, Buffer* dataOut); @@ -71,6 +74,5 @@ protected: std::string m_taps_file; mutable std::mutex m_taps_mutex; - std::vector<float> m_taps; }; |