/****************************************************************************** * Copyright 2017 The Apollo Authors. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. *****************************************************************************/ /** * @file * @brief Defines the evaluator factory */ #ifndef MODULES_PREDICTION_EVALUATOR_EVALUATOR_FACTORY_H_ #define MODULES_PREDICTION_EVALUATOR_EVALUATOR_FACTORY_H_ #include #include "modules/common/macro.h" #include "modules/common/util/factory.h" #include "modules/prediction/evaluator/evaluator.h" #include "modules/prediction/proto/prediction_conf.pb.h" /** * @namespace apollo::prediction * @brief apollo::prediction */ namespace apollo { namespace prediction { class EvaluatorFactory : public apollo::common::util::Factory { public: /** * @brief Register evaluators */ void RegisterEvaluator(); /** * @brief Create a pointer to an evaluator * @param Evaluator name * @return A pointer to the given evaluator */ std::unique_ptr CreateEvaluator( const ObstacleConf::EvaluatorType& type); private: DECLARE_SINGLETON(EvaluatorFactory); }; } // namespace prediction } // namespace apollo #endif // MODULES_PREDICTION_EVALUATOR_EVALUATOR_FACTORY_H_