MIDI::Port::(get|set)_state() should be virtual, so that derived classes get their chance in the sun. Fixes #4887

git-svn-id: svn://localhost/ardour2/branches/3.0@12455 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2012-05-27 16:49:51 +00:00
parent 67953dc93b
commit 341d033b2c

View File

@ -48,8 +48,8 @@ class Port {
Port (const XMLNode&);
virtual ~Port ();
XMLNode& get_state () const;
void set_state (const XMLNode&);
virtual XMLNode& get_state () const;
virtual void set_state (const XMLNode&);
// FIXME: make Manager a friend of port so these can be hidden?