~ubuntu-branches/debian/jessie/stellarium/jessie

« back to all changes in this revision

Viewing changes to src/modules/StringArray.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Cédric Delfosse
  • Date: 2009-03-13 20:07:22 UTC
  • mfrom: (1.1.8 upstream)
  • mto: (11.1.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 7.
  • Revision ID: james.westby@ubuntu.com-20090313200722-gbgujsmzsa8a02ty
Import upstream version 0.10.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * The big star catalogue extension to Stellarium:
3
 
 * Author and Copyright: Johannes Gajdosik, 2006, 2007
4
 
 *
5
 
 * This program is free software; you can redistribute it and/or
6
 
 * modify it under the terms of the GNU General Public License
7
 
 * as published by the Free Software Foundation; either version 2
8
 
 * of the License, or (at your option) any later version.
9
 
 * 
10
 
 * This program is distributed in the hope that it will be useful,
11
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
 * GNU General Public License for more details.
14
 
 * 
15
 
 * You should have received a copy of the GNU General Public License
16
 
 * along with this program; if not, write to the Free Software
17
 
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
 
 */
19
 
 
20
 
#ifndef _STRINGARRAY_HPP_
21
 
#define _STRINGARRAY_HPP_
22
 
 
23
 
#include <QString>
24
 
 
25
 
namespace BigStarCatalogExtension {
26
 
 
27
 
// simple class for retrieving strings from a file: each string is
28
 
// a single line. You can access the lines of a file by the line number.
29
 
 
30
 
class StringArray {
31
 
public:
32
 
  StringArray(void) : array(0),size(0) {}
33
 
  ~StringArray(void) {clear();}
34
 
  void clear(void) {if (array) {delete[] array;array = 0;} size= 0;}
35
 
  int getSize(void) const {return size;}
36
 
  QString operator[](int i) const {return ((0<=i && i<size) ? array[i] : "");}
37
 
  void initFromFile(const QString& file_name);
38
 
private:
39
 
  QString *array;
40
 
  int size;
41
 
};
42
 
 
43
 
} // namespace BigStarCatalogExtension
44
 
 
45
 
#endif // _STRINGARRAY_HPP_