mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-06 14:52:34 +02:00
20 lines
450 B
C++
20 lines
450 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
TrackPanelCell.h
|
|
|
|
Paul Licameli
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_TRACK_PANEL_CELL__
|
|
#define __AUDACITY_TRACK_PANEL_CELL__
|
|
|
|
// Future: TrackPanelCell will be generalized to a new abstract base class of Track
|
|
// and of other things.
|
|
class Track;
|
|
using TrackPanelCell = Track;
|
|
|
|
#endif
|