##// END OF EJS Templates
Merge branch 'feature/VariableSelection' into develop
Merge branch 'feature/VariableSelection' into develop

File last commit:

r240:00cdbd31ff7e
r270:7f62a644886e merge
Show More
SqpDateTime.h
28 lines | 653 B | text/x-c | CLexer
Add SqpDateTime struct
r177 #ifndef SCIQLOP_SQPDATETIME_H
#define SCIQLOP_SQPDATETIME_H
SqpDateTime is now declared as meta type
r218 #include <QObject>
Add SqpDateTime struct
r177 /**
* @brief The SqpDateTime struct holds the information of time parameters
*/
struct SqpDateTime {
/// Start time
double m_TStart;
/// End time
double m_TEnd;
A variable is now created with its dateTime too....
r212
bool contains(const SqpDateTime &dateTime)
{
return (m_TStart <= dateTime.m_TStart && m_TEnd >= dateTime.m_TEnd);
}
Add intersect méthode on variable and sqpDateTime...
r240
bool intersect(const SqpDateTime &dateTime)
{
return (m_TEnd >= dateTime.m_TStart && m_TStart <= dateTime.m_TEnd);
}
Add SqpDateTime struct
r177 };
SqpDateTime is now declared as meta type
r218 // Required for using shared_ptr in signals/slots
Q_DECLARE_METATYPE(SqpDateTime)
Add SqpDateTime struct
r177 #endif // SCIQLOP_SQPDATETIME_H