SMSTransformationChainIO.cxx
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #include "SMSTransformationChainIO.hxx"
00023 #include "ProcessingFactory.hxx"
00024
00025
00026 namespace CLAM
00027 {
00028
00029 namespace Hidden
00030 {
00031 static const char * metadata[] = {
00032 "key", "SMSTransformationChainIO",
00033 "category", "SMS Transformations",
00034 "description", "SMSTransformationChainIO",
00035 0
00036 };
00037 static FactoryRegistrator<ProcessingFactory, SMSTransformationChainIO> reg = metadata;
00038 }
00039
00040 bool SMSTransformationChainIO::Do(const Frame& in, Frame& out)
00041 {
00042 out=in;
00043 return true;
00044 }
00045
00046
00047 }
00048