Audacity 3.2.0
NumericConverterType.cpp
Go to the documentation of this file.
1/* SPDX-License-Identifier: GPL-2.0-or-later */
2/**********************************************************************
3
4 Audacity: A Digital Audio Editor
5
6 @file NumericConverterType.cpp
7
8 Dmitry Vedenko
9
10 **********************************************************************/
12
14{
15 static NumericConverterType value { L"time" };
16 return value;
17}
18
20{
21 static NumericConverterType value { L"duration" };
22 return value;
23}
24
26{
27 static NumericConverterType value { L"frequency" };
28 return value;
29}
30
32{
33 static NumericConverterType value { L"bandwidth" };
34 return value;
35}
const NumericConverterType & NumericConverterType_BANDWIDTH()
const NumericConverterType & NumericConverterType_DURATION()
const NumericConverterType & NumericConverterType_FREQUENCY()
const NumericConverterType & NumericConverterType_TIME()
An explicitly nonlocalized string, not meant for the user to see.
Definition: Identifier.h:22