bbtkAtomicBlackBoxInputDescriptor.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
00023
00024
00025
00026
00027
00028
00029
00030
00035 #include "bbtkAtomicBlackBoxInputDescriptor.h"
00036
00037
00038 namespace bbtk
00039 {
00040
00041 AtomicBlackBoxInputDescriptor::
00042 AtomicBlackBoxInputDescriptor( TypeInfo creator_type_info,
00043 const std::string& name,
00044 const std::string& description,
00045 const std::string& nature,
00046 AtomicBlackBoxGetFunctor* getfunctor,
00047 AtomicBlackBoxSetFunctor* setfunctor,
00048 bool copy_construct)
00049 :
00050 BlackBoxInputDescriptor(creator_type_info,
00051 name,description,
00052 nature,
00053 copy_construct,
00054 MANDATORY),
00055 mGetFunctor(getfunctor),
00056 mSetFunctor(setfunctor)
00057 {
00058 bbtkDebugMessage("kernel",9,
00059 "AtomicBlackBoxInputDescriptor(\""
00060 <<name<<"\",\""<<description<<"\",\""
00061 <<nature<<"\","
00062 <<getfunctor<<","<<setfunctor<<","
00063 <<copy_construct<<")"<<std::endl);
00064 }
00065
00066
00067
00068 AtomicBlackBoxInputDescriptor::~AtomicBlackBoxInputDescriptor()
00069 {
00070 bbtkDebugMessage("kernel",9,
00071 "~AtomicBlackBoxInputDescriptor(\""
00072 <<GetName()<<"\")"<<std::endl);
00073 }
00074 }