CLAM-Development  1.4.0
Fundamental2Control.cxx
Go to the documentation of this file.
2 #include "ProcessingFactory.hxx"
3 
4 namespace CLAM
5 {
6 namespace Hidden
7 {
8  static const char * metadata[] = {
9  "key", "Fundamental2Control",
10  "category", "Controls",
11  "description", "Fundamental2Control",
12  0
13  };
14  static FactoryRegistrator<ProcessingFactory, Fundamental2Control> reg = metadata;
15 }
16 
17 bool Fundamental2Control::Do( const Fundamental& inFund )
18 {
19  mFreqControlOut.SendControl( inFund.GetFreq(0) );
20  return true;
21 }
22 
23 
24 }
25