##// END OF EJS Templates
Defines actions for a data source items...
Defines actions for a data source items DataSourceItemAction is an object that will be connected to a QAction. When the QAction will be triggered, the DataSourceItemAction will be executed

File last commit:

r123:e6010ea74fa1
r144:7a9a79ed3b02
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