##// END OF EJS Templates
Replaces QString unit by a new struct...
Replaces QString unit by a new struct The Unit struct contains a flag that indicates if it's a time unit or not. It will be used to set the correct ticker for axes on a graph (default ticker or datetime ticker)

File last commit:

r123:e6010ea74fa1
r177:4c64b786fec1
Show More
DataProviderParameters.h
16 lines | 381 B | text/x-c | CLexer
/ core / include / Data / DataProviderParameters.h
#ifndef SCIQLOP_DATAPROVIDERPARAMETERS_H
#define SCIQLOP_DATAPROVIDERPARAMETERS_H
/**
* @brief The DataProviderParameters struct holds the information needed to retrieve data from a
* data provider
* @sa IDataProvider
*/
struct DataProviderParameters {
/// Start time
double m_TStart;
/// End time
double m_TEnd;
};
#endif // SCIQLOP_DATAPROVIDERPARAMETERS_H