1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-22 06:01:25 +01:00

XMLTagHandler.cpp has fewer dependencies...

... freeing three files from dependency cycles
This commit is contained in:
Paul Licameli
2019-05-12 15:53:01 -04:00
parent 7fc3adb54d
commit 191cd23b54
3 changed files with 12 additions and 9 deletions

View File

@@ -63,6 +63,12 @@ public:
static bool IsGoodInt64(const wxString & strInt);
static bool IsGoodIntForRange(const wxString & strInt, const wxString & strMAXABS);
enum ChannelType
{
LeftChannel = 0,
RightChannel = 1,
MonoChannel = 2
};
static bool IsValidChannel(const int nValue);
#ifdef USE_MIDI
static bool IsValidVisibleChannels(const int nValue);