Stellarium 0.11.4 | |||
Home · All Namespaces · All Classes · Functions · Coding Style · Scripting · Plugins · File Structure |
00001 /* 00002 * Copyright (C) 2008 Fabien Chereau 00003 * 00004 * This program is free software; you can redistribute it and/or 00005 * modify it under the terms of the GNU General Public License 00006 * as published by the Free Software Foundation; either version 2 00007 * of the License, or (at your option) any later version. 00008 * 00009 * This program is distributed in the hope that it will be useful, 00010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00012 * GNU General Public License for more details. 00013 * 00014 * You should have received a copy of the GNU General Public License 00015 * along with this program; if not, write to the Free Software 00016 * Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA. 00017 */ 00018 00019 #ifndef _STELLOCATION_HPP_ 00020 #define _STELLOCATION_HPP_ 00021 00022 #include <QString> 00023 00026 class StelLocation 00027 { 00028 public: 00029 StelLocation() : longitude(0.f), latitude(0.f), altitude(0), bortleScaleIndex(2.f), isUserLocation(true) {;} 00030 00032 QString getID() const 00033 { 00034 return name + ", " +country; 00035 } 00036 00038 QString serializeToLine() const; 00039 00041 QString name; 00043 QString country; 00045 QString state; 00047 QString planetName; 00049 float longitude; 00051 float latitude; 00053 int altitude; 00055 float bortleScaleIndex; 00057 QString landscapeKey; 00059 int population; 00062 QChar role; 00063 00065 static StelLocation createFromLine(const QString& line); 00066 00068 bool isUserLocation; 00069 }; 00070 00072 QDataStream& operator<<(QDataStream& out, const StelLocation& loc); 00074 QDataStream& operator>>(QDataStream& in, StelLocation& loc); 00075 00076 #endif // _STELLOCATION_HPP_