#include <map>
#include <memory>
#include <string>
#include <vector>
#include "modules/common/status/status.h"
#include "modules/common/util/factory.h"
#include "modules/planning/common/frame.h"
#include "modules/planning/proto/planning_config.pb.h"
#include "modules/planning/tasks/task.h"
Go to the source code of this file.
◆ DECLARE_STAGE
#define DECLARE_STAGE |
( |
|
NAME, |
|
|
|
CONTEXT |
|
) |
| |
Value:class NAME : public Stage { \
public: \
explicit NAME(const ScenarioConfig::StageConfig& config) \
: Stage(config) {} \
Stage::StageStatus Process( \
const common::TrajectoryPoint& planning_init_point, \
Frame* frame) override; \
CONTEXT* GetContext() { return GetContextAs<CONTEXT>(); } \
}