##// END OF EJS Templates
Add SqpDateTime struct
Add SqpDateTime struct

File last commit:

r191:e7b5abd4403a
r191:e7b5abd4403a
Show More
SqpDateTime.h
15 lines | 295 B | text/x-c | CLexer
#ifndef SCIQLOP_SQPDATETIME_H
#define SCIQLOP_SQPDATETIME_H
/**
* @brief The SqpDateTime struct holds the information of time parameters
* @sa SqpDateTime
*/
struct SqpDateTime {
/// Start time
double m_TStart;
/// End time
double m_TEnd;
};
#endif // SCIQLOP_SQPDATETIME_H