Removed "return const" from some functions

This commit is contained in:
Klaus Basan
2015-01-29 17:31:00 +01:00
parent 39150a1bc1
commit 054b30c306
5 changed files with 16 additions and 19 deletions

View File

@@ -118,17 +118,14 @@ namespace BlackCore
//! Reload bookings from booking service
virtual void readAtcBookingsFromSource() const = 0;
/*!
* The ATC list with online ATC controllers
* \remarks If I make this &getAtcStations XML is not generated correctly
*/
virtual const BlackMisc::Aviation::CAtcStationList getAtcStationsOnline() const = 0;
//! The ATC list with online ATC controllers
virtual BlackMisc::Aviation::CAtcStationList getAtcStationsOnline() const = 0;
//! ATC list, with booked controllers
virtual const BlackMisc::Aviation::CAtcStationList getAtcStationsBooked() const = 0 ;
virtual BlackMisc::Aviation::CAtcStationList getAtcStationsBooked() const = 0 ;
//! Aircraft list
virtual const BlackMisc::Aviation::CAircraftList getAircraftInRange() const = 0;
virtual BlackMisc::Aviation::CAircraftList getAircraftInRange() const = 0;
//! Get all users
virtual BlackMisc::Network::CUserList getUsers() const = 0;