File: threadcalculs.h

package info (click to toggle)
previsat 3.5.1.7%2Bdfsg1-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 32,720 kB
  • sloc: cpp: 17,583; xml: 62; makefile: 24; sh: 6
file content (107 lines) | stat: -rw-r--r-- 2,488 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/*
 *     PreviSat, Satellite tracking software
 *     Copyright (C) 2005-2016  Astropedia web: http://astropedia.free.fr  -  mailto: astropedia@free.fr
 *
 *     This program is free software: you can redistribute it and/or modify
 *     it under the terms of the GNU General Public License as published by
 *     the Free Software Foundation, either version 3 of the License, or
 *     (at your option) any later version.
 *
 *     This program is distributed in the hope that it will be useful,
 *     but WITHOUT ANY WARRANTY; without even the implied warranty of
 *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *     GNU General Public License for more details.
 *
 *     You should have received a copy of the GNU General Public License
 *     along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * _______________________________________________________________________________________________________
 *
 * Nom du fichier
 * >    threadcalculs.h
 *
 * Localisation
 * >
 *
 * Heritage
 * >    QThread
 *
 * Auteur
 * >    Astropedia
 *
 * Date de creation
 * >    3 mars 2012
 *
 * Date de revision
 * >    4 decembre 2015
 *
 */

#ifndef THREADCALCULS_H
#define THREADCALCULS_H

#include <QThread>
#include "librairies/observateur/observateur.h"
#include "previsions/conditions.h"

class ThreadCalculs : public QThread
{
public:

    /* Constructeurs */
    /**
     * @brief ThreadCalculs Constructeur avec conditions
     * @param cond conditions d'observation
     */
    explicit ThreadCalculs(const Conditions &cond) :
        _conditions(cond) { }

    /**
     * @brief ThreadCalculs Constructeur avec conditions et lieu d'observation
     * @param cond conditions d'observation
     * @param obs lieu d'observation
     */
    ThreadCalculs(const Conditions &cond, const Observateur &obs) :
        _conditions(cond) {
        _observ = obs;
    }

    /* Constantes publiques */

    /* Variables publiques */

    /* Methodes publiques */
    /**
     * @brief run Lancement du thread
     */
    void run();

    /* Accesseurs */
    static Observateur observateur();
    QStringList res();
    TypeCalcul typeCalcul() const;


protected:

    /* Constantes protegees */

    /* Variables protegees */

    /* Methodes protegees */


private:

    /* Constantes privees */

    /* Variables privees */
    Conditions _conditions;
    static Observateur _observ;

    /* Methodes privees */


};

#endif // THREADCALCULS_H