aboutsummaryrefslogtreecommitdiffstats
path: root/src/MemlessPoly.h
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2017-08-04 20:42:09 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2017-08-04 20:42:09 +0200
commit0c96ac35b3d6758a556959b37ee2316357e0ae0c (patch)
tree30265af24517fe331caf7a47fe76d343981c6e18 /src/MemlessPoly.h
parent0c31bc95ca1ca4ee420a6e2d82bad6b1e50177c6 (diff)
downloaddabmod-0c96ac35b3d6758a556959b37ee2316357e0ae0c.tar.gz
dabmod-0c96ac35b3d6758a556959b37ee2316357e0ae0c.tar.bz2
dabmod-0c96ac35b3d6758a556959b37ee2316357e0ae0c.zip
Move MemlessPoly m_coefs to private
Diffstat (limited to 'src/MemlessPoly.h')
-rw-r--r--src/MemlessPoly.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/MemlessPoly.h b/src/MemlessPoly.h
index eb51d50..9fe19d7 100644
--- a/src/MemlessPoly.h
+++ b/src/MemlessPoly.h
@@ -63,16 +63,12 @@ public:
virtual const std::string get_parameter(
const std::string& parameter) const;
-//TODO to protected
- std::vector<complexf> m_coefs;
-
-
-protected:
+private:
int internal_process(Buffer* const dataIn, Buffer* dataOut);
void load_coefficients(const std::string &coefFile);
+ std::vector<complexf> m_coefs;
std::string m_coefs_file;
-
mutable std::mutex m_coefs_mutex;
};