##// END OF EJS Templates
Adds name to a graph...
Adds name to a graph - The name is passed as a parameter in the ctor - It is used as a title of the graph and will also be used to be displayed in menus related to a variable

File last commit:

r191:e7b5abd4403a
r196:8ddc77b998a0
Show More
DataProviderParameters.h
15 lines | 355 B | text/x-c | CLexer
/ core / include / Data / DataProviderParameters.h
Alexandre Leroux
Creates data provider parameters
r123 #ifndef SCIQLOP_DATAPROVIDERPARAMETERS_H
#define SCIQLOP_DATAPROVIDERPARAMETERS_H
Add SqpDateTime struct
r191 #include "SqpDateTime.h"
Alexandre Leroux
Creates data provider parameters
r123 /**
* @brief The DataProviderParameters struct holds the information needed to retrieve data from a
* data provider
* @sa IDataProvider
*/
struct DataProviderParameters {
Add SqpDateTime struct
r191 SqpDateTime m_Time;
Alexandre Leroux
Creates data provider parameters
r123 };
#endif // SCIQLOP_DATAPROVIDERPARAMETERS_H