add MixerSnapshots to LIBARDOUR

This commit is contained in:
Nikolaus Gullotta 2019-04-03 12:08:00 -05:00
parent 75ffa4d9d7
commit a9a5e1465f
2 changed files with 6 additions and 2 deletions

View file

@ -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;

View file

@ -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__ */