Ejemplo n.º 1
0
 /// Returns true if its argument's frame corresponds to the one used to
 /// create this object
 /// @param seqlocinfo the object to examine [in]
 bool operator() (const CRef<CSeqLocInfo>& seqlocinfo) const {
     if (seqlocinfo.Empty()) {
         NCBI_THROW(CBlastException, eInvalidArgument, 
                    "Empty CRef<CSeqLocInfo>!");
     }
     return (seqlocinfo->GetFrame() == m_Frame) ? true : false;
 }