1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-29 16:08:46 +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

@@ -213,12 +213,11 @@ class AUDACITY_DLL_API Track /* not final */
public:
enum ChannelType
{
LeftChannel = 0,
RightChannel = 1,
MonoChannel = 2
};
using ChannelType = XMLValueChecker::ChannelType;
static const auto LeftChannel = XMLValueChecker::LeftChannel;
static const auto RightChannel = XMLValueChecker::RightChannel;
static const auto MonoChannel = XMLValueChecker::MonoChannel;
TrackId GetId() const { return mId; }
private: