merge changes to libmidi++ API from 2.0-ongoing
[ardour.git] / libs / midi++2 / midi++ / port_request.h
index 0cb4ffded662a8291935ea5a00a3d6d5960e52f8..dfde87a63c033aba534828a5d8017e82568f5ea8 100644 (file)
@@ -53,6 +53,13 @@ struct PortRequest {
                 const std::string &xtype);
 };
 
+struct PortSet {
+    PortSet (std::string str) : owner (str) { }
+    
+    std::string owner;
+    std::list<PortRequest> ports;
+};
+
 } // namespace MIDI
 
 #endif // __midi_port_request_h__