// Copyright (c) OpenMMLab. All rights reserved. #ifndef MMDEPLOY_SRC_PIPELINE_PIPELINE_H_ #define MMDEPLOY_SRC_PIPELINE_PIPELINE_H_ #include "core/graph.h" namespace mmdeploy::graph { class Pipeline : public Node { public: static unique_ptr Create(const Value& config); void Build(TaskGraph& graph) override; private: vector > nodes_; vector inputs_; vector outputs_; }; } // namespace mmdeploy::graph #endif // MMDEPLOY_SRC_PIPELINE_PIPELINE_H_