summaryrefslogtreecommitdiff
path: root/libs/ardour/test/test_needing_playlist_and_regions.h
blob: d8e890b9688b30a8aae6b543348b103742f834a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <boost/shared_ptr.hpp>
#include "test_needing_session.h"

namespace ARDOUR {
	class Playlist;
	class Source;
	class Region;
}

class TestNeedingPlaylistAndRegions : public TestNeedingSession
{
public:
	virtual void setUp ();
	virtual void tearDown ();

protected:
	boost::shared_ptr<ARDOUR::Playlist> _playlist;
	boost::shared_ptr<ARDOUR::Source> _source;
	boost::shared_ptr<ARDOUR::Region> _region[16];
};