##// END OF EJS Templates
A variable is now created with its dateTime too....
A variable is now created with its dateTime too. The variable can now determine if it as already the data requested on the new requested range or not.

File last commit:

r212:8e4faeed90b4
r212:8e4faeed90b4
Show More
SqpDateTime.h
19 lines | 413 B | text/x-c | CLexer
#ifndef SCIQLOP_SQPDATETIME_H
#define SCIQLOP_SQPDATETIME_H
/**
* @brief The SqpDateTime struct holds the information of time parameters
*/
struct SqpDateTime {
/// Start time
double m_TStart;
/// End time
double m_TEnd;
bool contains(const SqpDateTime &dateTime)
{
return (m_TStart <= dateTime.m_TStart && m_TEnd >= dateTime.m_TEnd);
}
};
#endif // SCIQLOP_SQPDATETIME_H