~ubuntu-branches/ubuntu/oneiric/kstars/oneiric-proposed

« back to all changes in this revision

Viewing changes to kstars/skyobjects/deepstardata.h

  • Committer: Bazaar Package Importer
  • Author(s): Rohan Garg
  • Date: 2011-07-23 23:07:27 UTC
  • Revision ID: james.westby@ubuntu.com-20110723230727-xp70ea7v5eay0wya
Tags: upstream-4.7.0
ImportĀ upstreamĀ versionĀ 4.7.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
                     stardata.h  -  K Desktop Planetarium
 
3
                             -------------------
 
4
    begin                : Tue 5 Aug 2008
 
5
    copyright            : (C) 2008 by Akarsh Simha
 
6
    email                : akarshsimha@gmail.com
 
7
 ***************************************************************************/
 
8
 
 
9
/***************************************************************************
 
10
 *                                                                         *
 
11
 *   This program is free software; you can redistribute it and/or modify  *
 
12
 *   it under the terms of the GNU General Public License as published by  *
 
13
 *   the Free Software Foundation; either version 2 of the License, or     *
 
14
 *   (at your option) any later version.                                   *
 
15
 *                                                                         *
 
16
 ***************************************************************************/
 
17
 
 
18
#ifndef DEEPSTARDATA_H
 
19
#define DEEPSTARDATA_H
 
20
 
 
21
#include <QtGlobal>
 
22
 
 
23
/**
 
24
 *@short  Structure that holds star data for really faint stars
 
25
 *@author Akarsh Simha
 
26
 *@version 1.0
 
27
 */
 
28
struct deepStarData {
 
29
    qint32 RA;
 
30
    qint32 Dec;
 
31
    qint16 dRA;
 
32
    qint16 dDec;
 
33
    qint16 B;
 
34
    qint16 V;
 
35
};
 
36
 
 
37
#endif