##// END OF EJS Templates
Makes the connection between Data source controller and Variable controller...
Makes the connection between Data source controller and Variable controller - Adds a signal to prevent a variable creation request from the data source controller - Connects the signal to the slot that creates a variable in the variable controller

File last commit:

r115:e6010ea74fa1
r157:90c64bed8482
Show More
DataProviderParameters.h
16 lines | 381 B | text/x-c | CLexer
/ core / include / Data / DataProviderParameters.h
Alexandre Leroux
Creates data provider parameters
r115 #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