~ubuntu-branches/ubuntu/utopic/ardour3/utopic

« back to all changes in this revision

Viewing changes to libs/ardour/test/test_needing_session.h

  • Committer: Package Import Robot
  • Author(s): Felipe Sateler
  • Date: 2013-09-21 19:05:02 UTC
  • Revision ID: package-import@ubuntu.com-20130921190502-8gsftrku6jnzhd7v
Tags: upstream-3.4~dfsg
ImportĀ upstreamĀ versionĀ 3.4~dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <cppunit/TestFixture.h>
 
2
#include <cppunit/extensions/HelperMacros.h>
 
3
 
 
4
namespace ARDOUR {
 
5
        class Session;
 
6
}
 
7
 
 
8
class TestNeedingSession : public CppUnit::TestFixture
 
9
{
 
10
public:
 
11
        virtual void setUp ();
 
12
        virtual void tearDown ();
 
13
 
 
14
protected:
 
15
        ARDOUR::Session* _session;
 
16
};