CluE  1.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
inputsetter.h
Go to the documentation of this file.
1 #ifndef INPUTSETTER_H
2 #define INPUTSETTER_H
3 
4 #include <vector>
5 
6 namespace CluE
7 {
13 template<typename T> class InputSetter
14 {
15 public:
16  virtual void setInput(std::vector<T*> const*) = 0;
17 };
18 }
19 
20 #endif
virtual void setInput(std::vector< T * > const *)=0
Interface to propagate the ability to set input data.
Definition: inputsetter.h:13