.. _program_listing_file_applications_surface_station_app.h: Program Listing for File surface_station_app.h ============================================== |exhale_lsh| :ref:`Return to documentation for file ` (``applications/surface_station_app.h``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #pragma once #include "lupnt/applications/application.h" #include "lupnt/core/config.h" #include "lupnt/filters/filter.h" namespace lupnt { class SurfaceStationApp : public Application { protected: Ptr filter_; public: SurfaceStationApp() = default; SurfaceStationApp(Config& config); void Step(Real t) override; void Setup() override; }; } // namespace lupnt