##// END OF EJS Templates
Uses new iterator in DataSeries.cpp...
Uses new iterator in DataSeries.cpp The code of the old iterator is deleted. The new iterator is now built from the Implementation of DataSeriesIteratorValue :: Impl for a DataSeries

File last commit:

r327:87af69bdce8a
r596:96f73c42ec59
Show More
IVariableContainer.h
22 lines | 601 B | text/x-c | CLexer
Alexandre Leroux
Creates a interface that defines a variable container...
r209 #ifndef SCIQLOP_IVARIABLECONTAINER_H
#define SCIQLOP_IVARIABLECONTAINER_H
class Variable;
/**
* @brief The IVariableContainer interface represents an UI object that can accommodate a variable
*/
class IVariableContainer {
public:
virtual ~IVariableContainer() = default;
/// Checks if the container can handle the variable passed in parameter
virtual bool canDrop(const Variable &variable) const = 0;
Alexandre Leroux
Unplot menu (5): adds contains() method to an IVariableContainer...
r327
/// Checks if the container contains the variable passed in parameter
virtual bool contains(const Variable &variable) const = 0;
Alexandre Leroux
Creates a interface that defines a variable container...
r209 };
#endif // SCIQLOP_IVARIABLECONTAINER_H