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:
11
src/Track.h
11
src/Track.h
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user