mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-26 16:37:44 +01:00
git-svn-id: svn://localhost/ardour2/branches/3.0@11149 d708f5d6-7413-0410-9779-e7cbd77b26cf
16 lines
276 B
C++
16 lines
276 B
C++
#include <cppunit/TestFixture.h>
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
namespace ARDOUR {
|
|
class Session;
|
|
}
|
|
|
|
class TestNeedingSession : public CppUnit::TestFixture
|
|
{
|
|
public:
|
|
virtual void setUp ();
|
|
virtual void tearDown ();
|
|
|
|
protected:
|
|
ARDOUR::Session* _session;
|
|
};
|