Reduce header dependencies.

git-svn-id: svn://localhost/ardour2/branches/3.0@4490 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2009-02-04 17:05:26 +00:00
parent dc6571fb29
commit ee4e28751e
7 changed files with 110 additions and 88 deletions

View file

@ -27,7 +27,7 @@
#include <gtkmm/label.h>
#include <gtkmm/checkbutton.h>
#include <boost/shared_ptr.hpp>
#include "port_matrix_body.h"
#include "ardour/bundle.h"
#include "port_group.h"
/** The `port matrix' UI. This is a widget which lets the user alter
@ -43,6 +43,8 @@ namespace ARDOUR {
class Bundle;
}
class PortMatrixBody;
class PortMatrix : public Gtk::VBox
{
public:
@ -144,7 +146,7 @@ private:
ARDOUR::DataType _type;
std::vector<sigc::connection> _route_connections;
PortMatrixBody _body;
PortMatrixBody* _body;
Gtk::HScrollbar _hscroll;
Gtk::VScrollbar _vscroll;
Gtk::HBox _main_hbox;