| 47 | { |
| 48 | |
| 49 | tuple tickInterval( const OversamplesCalculator &o, float f ) |
| 50 | { |
| 51 | int tickLow = 0; |
| 52 | int tickHigh = 0; |
| 53 | |
| 54 | float x = o.tickInterval( f, tickLow, tickHigh ); |
| 55 | return make_tuple( x, tickLow, tickHigh ); |
| 56 | } |
| 57 | |
| 58 | void bindOversamplesCalculator() |
| 59 | { |
no test coverage detected