Ejemplo n.º 1
0
        //! Stations constructor.

        /*!
         *  \param string name of station
         *  \param GeoCoordinate position of the Station
         *  \param Antenna antenna available at the stations
         *  constructs a Groundstationat with a advanced antenna the given coordinates
         */
        public Station(string _name, Definition.GeoCoordinate _geoCord,
                       Antenna _antenna)
        {
            antennaList   = new List <Antenna>();
            geoCoordinate = _geoCord;
            name          = _name;
            antennaList.Add(_antenna);
        }
Ejemplo n.º 2
0
        //! Add a Antenna to the stations

        /*!
         *  \param Antenna
         */
        public void addAntenna(Antenna AntennaToAdd)
        {
            antennaList.Add(AntennaToAdd);
        }