add threshold/window flag getter/setters
[mussa.git] / alg / mussa.cpp
index 1911c5de7b187e11924f44417faf36ec35c8c29d..0912cb428be56d6ea4f1e270cf4b0acb2b9517a9 100644 (file)
@@ -90,6 +90,26 @@ Mussa::clear()
   set_dirty(false);
 }
 
+void Mussa::set_append_window(bool v) 
+{
+  win_append = v;
+}
+
+bool Mussa::get_append_window()
+{
+  return win_append;
+}
+
+void Mussa::set_append_threshold(bool v)
+{
+  thres_append = v;
+}
+
+bool Mussa::get_append_threshold()
+{
+  return thres_append;
+}
+
 void Mussa::set_dirty(bool new_state)
 {
   if (dirty != new_state) {