=============================================================
| 1324 | |
| 1325 | //============================================================= |
| 1326 | enum SampleLimit |
| 1327 | { |
| 1328 | SignedInt16_Min = -32768, |
| 1329 | SignedInt16_Max = 32767, |
| 1330 | UnsignedInt16_Min = 0, |
| 1331 | UnsignedInt16_Max = 65535, |
| 1332 | SignedInt24_Min = -8388608, |
| 1333 | SignedInt24_Max = 8388607, |
| 1334 | UnsignedInt24_Min = 0, |
| 1335 | UnsignedInt24_Max = 16777215 |
| 1336 | }; |
| 1337 | |
| 1338 | //============================================================= |
| 1339 | template <class T> |
nothing calls this directly
no outgoing calls
no test coverage detected