.. _program_listing_file_src_navtk_inertial_Mechanization.hpp: Program Listing for File Mechanization.hpp ========================================== |exhale_lsh| :ref:`Return to documentation for file ` (``src/navtk/inertial/Mechanization.hpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #pragma once #include #include #include #include #include #include namespace navtk { namespace inertial { class Mechanization { public: virtual ~Mechanization() = default; virtual not_null> mechanize( const Vector3& dv_s, const Vector3& dth_s, double dt, const not_null> pva, const not_null> old_pva, const MechanizationOptions& mech_options, AidingAltData* aiding_alt_data) = 0; protected: Mechanization() = default; }; } // namespace inertial } // namespace navtk