mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
12 lines
270 B
C++
12 lines
270 B
C++
#ifndef __ardour_gtk_automation_selection_h__
|
|
#define __ardour_gtk_automation_selection_h__
|
|
|
|
#include <list>
|
|
|
|
namespace ARDOUR {
|
|
class AutomationList;
|
|
}
|
|
|
|
struct AutomationSelection : list<ARDOUR::AutomationList*> {};
|
|
|
|
#endif /* __ardour_gtk_automation_selection_h__ */
|