diff trunk/src/Support/SignalBank.h @ 443:f2dd5788e1d8

- Support for output as a set of PNG files.
author tomwalters
date Sun, 14 Nov 2010 05:56:50 +0000
parents 733a11a65f3d
children 16a590fbc0ba
line wrap: on
line diff
--- a/trunk/src/Support/SignalBank.h	Sun Nov 07 07:38:20 2010 +0000
+++ b/trunk/src/Support/SignalBank.h	Sun Nov 14 05:56:50 2010 +0000
@@ -64,7 +64,7 @@
   inline const vector<float> &get_signal(int channel) const {
     return signals_[channel];
   };
-  
+
   // Return a reference to the signal vector. The reference is not
   // const, so the vector is directly modifiable. In order to maintain
   // consistency of the data within the filterbank, the size of this
@@ -74,7 +74,7 @@
   inline vector<float> &get_mutable_signal(int channel) {
     return signals_[channel];
   };
-  
+
   inline void set_signal(int channel, vector<float> input) {
     signals_[channel] = input;
   }