General Purpose Geodetic Library
SgSingleSessionTaskManager.h
Go to the documentation of this file.
1 /*
2  *
3  * This file is a part of Space Geodetic Library. The library is used by
4  * nuSolve, a part of CALC/SOLVE system, and designed to make analysis of
5  * geodetic VLBI observations.
6  * Copyright (C) 2010-2020 Sergei Bolotin.
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation, either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program. If not, see <http://www.gnu.org/licenses/>.
20  *
21  */
22 
23 #ifndef SG_SINGLE_SESSION_TASK_MANAGER_H
24 #define SG_SINGLE_SESSION_TASK_MANAGER_H
25 
26 
27 #ifdef HAVE_CONFIG_H
28 # include <config.h>
29 #endif
30 
31 
32 #include <QtCore/QString>
33 #include <QtCore/QList>
34 #include <QtCore/QMap>
35 
36 
37 #include <SgTaskManager.h>
38 
39 
40 
41 
42 /***===================================================================================================*/
49 {
50 public:
51  //
52  // constructors/destructors:
53  //
58 
63 
67  virtual inline ~SgSingleSessionTaskManager();
68 
69 
70 
71  //
72  // Interfaces:
73  //
74  // gets:
75 
76  // sets:
77 
78  //
79  // Functions:
80  //
83  virtual const QString className();
84 
85  virtual bool prepare4Run();
86 
87  virtual void run(bool =true);
88 
89  virtual void finisRun();
90 
91 
92  //
93  // Friends:
94  //
95 
96  //
97  // I/O:
98  //
99  // ...
100 
101 private:
102  // private functions:
103  void updateParamaterLists();
104 };
105 /*=====================================================================================================*/
106 
107 
108 
109 
110 
111 
112 
113 
114 /*=====================================================================================================*/
115 /* */
116 /* SgSingleSessionTaskManager inline members: */
117 /* */
118 /*=====================================================================================================*/
119 //
120 //
121 // CONSTRUCTORS:
122 //
123 // An empty constructor:
125  SgTaskManager()
126 {
127 };
128 
129 
130 
131 // another constructor:
133  SgTaskManager(task)
134 {
135 };
136 
137 
138 
139 // A destructor:
141 {
142 };
143 
144 
145 
146 //
147 // INTERFACES:
148 //
149 //
150 
151 
152 
153 
154 //
155 // FRUNCTIONS:
156 //
157 //
158 //
159 
160 
161 
162 //
163 // FRIENDS:
164 //
165 //
166 //
167 /*=====================================================================================================*/
168 
169 
170 
171 
172 
173 /*=====================================================================================================*/
174 //
175 // aux functions:
176 //
177 
178 
179 /*=====================================================================================================*/
180 #endif //SG_SINGLE_SESSION_TASK_MANAGER_H
Definition: SgTask.h:59