.. _program_listing_file_transmission_transmission.h: Program Listing for File transmission.h ======================================= |exhale_lsh| :ref:`Return to documentation for file ` (``transmission/transmission.h``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #pragma once #include "lupnt/states/state.h" namespace lupnt { struct Transmission {}; struct Data {}; struct SimpleGnssData : public Data { Cart6 rv_tx; // [m, m/s] Position and velocity of the transmitter ClockState2 clk_tx; // [s] Clock state of the transmitter }; struct SimpleGnssTransmission : public Transmission { Ptr data; Real P_tx; // [dB-W] Transmitter power }; } // namespace lupnt