mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-20 12:26:07 +01:00
add MixerSnapshots to LIBARDOUR
This commit is contained in:
parent
75ffa4d9d7
commit
a9a5e1465f
2 changed files with 6 additions and 2 deletions
|
|
@ -90,7 +90,7 @@ class MixerSnapshotDialog : public ArdourDialog
|
|||
Gtk::TreeModelColumn<std::string> date;
|
||||
Gtk::TreeModelColumn<int64_t> timestamp;
|
||||
Gtk::TreeModelColumn<std::string> full_path;
|
||||
Gtk::TreeModelColumn<MixerSnapshot*> snapshot;
|
||||
Gtk::TreeModelColumn<ARDOUR::MixerSnapshot*> snapshot;
|
||||
};
|
||||
|
||||
MixerSnapshotColumns _columns;
|
||||
|
|
|
|||
|
|
@ -28,7 +28,9 @@
|
|||
#include "ardour/vca.h"
|
||||
#include "ardour/route_group.h"
|
||||
|
||||
class MixerSnapshot
|
||||
namespace ARDOUR {
|
||||
|
||||
class LIBARDOUR_API MixerSnapshot
|
||||
{
|
||||
public:
|
||||
MixerSnapshot(ARDOUR::Session*);
|
||||
|
|
@ -84,4 +86,6 @@ class MixerSnapshot
|
|||
std::vector<State> vca_states;
|
||||
};
|
||||
|
||||
} // namespace ARDOUR
|
||||
|
||||
#endif /* __ardour_mixer_snapshot_h__ */
|
||||
Loading…
Add table
Add a link
Reference in a new issue