#include <featureinfo.h>
Inheritance diagram for TagInfo:
Public Member Functions | |
TagInfo (SpatialFeatureData *data) | |
std::string | myInfoPos (TR_DNA pos) |
Private Member Functions | |
TagData * | tagData () |
Definition at line 79 of file featureinfo.h.
TagInfo::TagInfo | ( | SpatialFeatureData * | data | ) | [inline] |
std::string TagInfo::myInfoPos | ( | TR_DNA | pos | ) | [virtual] |
Reimplemented from FeatureInfo.
Definition at line 103 of file featureinfo.cc.
References TagData::getInfo(), TagData::getScore(), tagData(), and TagData::uniqueName().
00104 { 00105 00106 ostringstream os; 00107 00108 os<<tagData()->uniqueName()<< " Info: "<< tagData()->getInfo()<<" Score: "<<tagData()->getScore(); 00109 00110 00111 return os.str(); 00112 }
TagData * TagInfo::tagData | ( | ) | [private] |
Definition at line 114 of file featureinfo.cc.
References FeatureInfo::m_data.
Referenced by myInfoPos().
00115 { 00116 return dynamic_cast<TagData *>( m_data ); 00117 }