.. _program_listing_file_agents_ground_station_manager.h: Program Listing for File ground_station_manager.h ================================================= |exhale_lsh| :ref:`Return to documentation for file ` (``agents/ground_station_manager.h``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #pragma once #include "lupnt/agents/agent.h" namespace lupnt { class GroundStationManager : public Agent { public: GroundStationManager() = default; explicit GroundStationManager(Config& config) : Agent(config) {} Cart6 GetStateAt(Real /*t*/) const override { return Cart6(Vec6::Zero(), Frame::MOON_CI); } }; } // namespace lupnt