| 461 | // Convenience factory functions |
| 462 | |
| 463 | static FlightDescriptor Command(std::string cmd) { |
| 464 | return FlightDescriptor{CMD, std::move(cmd), {}}; |
| 465 | } |
| 466 | |
| 467 | static FlightDescriptor Path(std::vector<std::string> path) { |
| 468 | return FlightDescriptor{PATH, "", std::move(path)}; |
no outgoing calls