//! 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); }
//! Add a Antenna to the stations /*! * \param Antenna */ public void addAntenna(Antenna AntennaToAdd) { antennaList.Add(AntennaToAdd); }