TypedOutControl.hxx
Go to the documentation of this file.00001 #ifndef _TypedOutControl_
00002 #define _TypedOutControl_
00003
00004 #include "OutControl.hxx"
00005
00006 #warning TypedOutControl<T> is deprecated use OutControl<T> instead
00007
00008 namespace CLAM
00009 {
00010 template<class ControlDataType>
00011 class TypedOutControl : public OutControl<ControlDataType>
00012 {
00013 public:
00014 TypedOutControl(const std::string &name = "unnamed typed in control", Processing * proc = 0)
00015 : OutControl<ControlDataType>(name, proc)
00016 {
00017 }
00018 };
00019 }
00020
00021 #endif // _TypedOutControl_