Define struct Order with std::string id, int quantity, double unit_price, and enum class Status { Pending, Shipped, Cancelled } (nested) plus a status member (default Pending). Implement total(order) (quantity × unit_price) and cancellable(order) (true only when status is Pending).