BodiesRequest.h
726 Bytes
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
#ifndef BODIESREQUEST_H
#define BODIESREQUEST_H
#include <string>
#include "../Common/TREPSTypes.h"
using namespace std;
using namespace TREPS::Common;
namespace TREPS
{
namespace Bodies
{
class BodiesRequestClass
{
public :
BodiesRequestClass(void);
~BodiesRequestClass(void);
//set spacecraft type query boolean
void setIsSc(bool isSc);
//get spacecraft type query boolean
bool getIsSc(void);
//set times
void setTimes(const t_Time *startTime, const t_Time *stopTime);
//get start time
t_Time getStartTime(void) const;
//get end time
t_Time getStopTime(void) const;
private :
bool isSc;
t_Time startTime;
t_Time stopTime;
};
}
}
#endif