comparison audioDB.h @ 658:e7fae71ee676

Remove unused query_from_key_index field in audioDB object Admittedly, I could have used it in the next commit (a modification of sampling), but the plan is to produce a C API for sampling, whereupon all need for this field will disappear, so preemptively zap it.
author mas01cr
date Tue, 05 Jan 2010 16:44:03 +0000
parents 4c4389325ae4
children e1f7cab30701
comparison
equal deleted inserted replaced
657:4c4389325ae4 658:e7fae71ee676
247 unsigned isServer; 247 unsigned isServer;
248 unsigned port; 248 unsigned port;
249 double timesTol; 249 double timesTol;
250 double radius; 250 double radius;
251 bool query_from_key; 251 bool query_from_key;
252 Uns32T query_from_key_index;
253 bool use_absolute_threshold; 252 bool use_absolute_threshold;
254 double absolute_threshold; 253 double absolute_threshold;
255 bool use_relative_threshold; 254 bool use_relative_threshold;
256 double relative_threshold; 255 double relative_threshold;
257 256
382 isServer(0), \ 381 isServer(0), \
383 port(0), \ 382 port(0), \
384 timesTol(0.1), \ 383 timesTol(0.1), \
385 radius(0), \ 384 radius(0), \
386 query_from_key(false), \ 385 query_from_key(false), \
387 query_from_key_index((uint32_t) -1), \
388 use_absolute_threshold(false), \ 386 use_absolute_threshold(false), \
389 absolute_threshold(0.0), \ 387 absolute_threshold(0.0), \
390 use_relative_threshold(false), \ 388 use_relative_threshold(false), \
391 relative_threshold(0.0), \ 389 relative_threshold(0.0), \
392 reporter(0), \ 390 reporter(0), \