uint32_t getTimeSignatures(uint32_t pos);
list<Pair<uint32_t, double> > getBips() const { return _bips; }
- void addBip(uint32_t tick, double timestamp) {
- stringstream strs;\r
- strs << "Bip at " << tick << ":" << timestamp << endl;\r
- OutputDebugString( strs.str().c_str() ) ;
- _bips.push_back(Pair<uint32_t, double>(tick, timestamp)); }
+ void addBip(uint32_t tick, double timestamp) { _bips.push_back(Pair<uint32_t, double>(tick, timestamp)); }
//void computeBips();