CLAM-Development  1.4.0
TypedOutControl.hxx
Go to the documentation of this file.
1 #ifndef _TypedOutControl_
2 #define _TypedOutControl_
3 
4 #include "OutControl.hxx"
5 
6 #warning TypedOutControl<T> is deprecated use OutControl<T> instead
7 
8 namespace CLAM
9 {
10  template<class ControlDataType>
11  class TypedOutControl : public OutControl<ControlDataType>
12  {
13  public:
14  TypedOutControl(const std::string &name = "unnamed typed in control", Processing * proc = 0)
15  : OutControl<ControlDataType>(name, proc)
16  {
17  }
18  };
19 }
20 
21 #endif // _TypedOutControl_