alternative type, similar to BT::PortInfo
| 18 | |
| 19 | // alternative type, similar to BT::PortInfo |
| 20 | struct PortModel |
| 21 | { |
| 22 | PortModel(): direction(PortDirection::INOUT) {} |
| 23 | |
| 24 | QString type_name; |
| 25 | PortDirection direction; |
| 26 | QString description; |
| 27 | QString default_value; |
| 28 | |
| 29 | PortModel& operator = (const BT::PortInfo& src); |
| 30 | }; |
| 31 | |
| 32 | typedef std::map<QString, PortModel> PortModels; |
| 33 |
no outgoing calls