⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 seq_point.hpp

📁 ncbi源码
💻 HPP
字号:
/* * =========================================================================== * PRODUCTION $Log: Seq_point.hpp,v $ * PRODUCTION Revision 1000.2  2004/06/01 19:30:59  gouriano * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7 * PRODUCTION * =========================================================================== *//* $Id: Seq_point.hpp,v 1000.2 2004/06/01 19:30:59 gouriano Exp $ * =========================================================================== * *                            PUBLIC DOMAIN NOTICE *               National Center for Biotechnology Information * *  This software/database is a "United States Government Work" under the *  terms of the United States Copyright Act.  It was written as part of *  the author's official duties as a United States Government employee and *  thus cannot be copyrighted.  This software/database is freely available *  to the public for use. The National Library of Medicine and the U.S. *  Government have not placed any restriction on its use or reproduction. * *  Although all reasonable efforts have been taken to ensure the accuracy *  and reliability of the software and data, the NLM and the U.S. *  Government do not and cannot warrant the performance or results that *  may be obtained by using this software or data. The NLM and the U.S. *  Government disclaim all warranties, express or implied, including *  warranties of performance, merchantability or fitness for any particular *  purpose. * *  Please cite the author in any work or product based on this material. * * =========================================================================== * * Author:  ....... * * File Description: *   ....... * * Remark: *   This code was originally generated by application DATATOOL *   using specifications from the ASN data definition file *   'seqloc.asn'. * * --------------------------------------------------------------------------- * $Log: Seq_point.hpp,v $ * Revision 1000.2  2004/06/01 19:30:59  gouriano * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7 * * Revision 1.7  2004/05/06 16:54:41  shomrat * Added methods to set partial left and right * * Revision 1.6  2004/01/28 19:06:52  shomrat * Added methods to ease the construction of objects * * Revision 1.5  2002/12/26 12:43:42  dicuccio * Added Win32 export specifiers * * Revision 1.4  2002/09/12 21:14:20  kans * IsPartialLeft and IsPartialRight are const * * Revision 1.3  2002/09/12 20:39:03  kans * added member functions IsPartialLeft and IsPartialRight * * Revision 1.2  2002/06/06 20:50:50  clausen * Moved IsValid to objects/util/sequence.cpp * * Revision 1.1  2002/01/10 19:11:02  clausen * Commiting add * * * =========================================================================== */#ifndef OBJECTS_SEQLOC_SEQ_POINT_HPP#define OBJECTS_SEQLOC_SEQ_POINT_HPP// generated includes#include <objects/seqloc/Seq_point_.hpp>// generated classesBEGIN_NCBI_SCOPEBEGIN_objects_SCOPE // namespace ncbi::objects::class NCBI_SEQLOC_EXPORT CSeq_point : public CSeq_point_Base{    typedef CSeq_point_Base Tparent;public:    // constructor    CSeq_point(void);    CSeq_point(TId& id, TPoint point, TStrand strand = eNa_strand_unknown);    // destructor    ~CSeq_point(void);    // check left (5') or right (3') end of location for e_Lim fuzz    bool IsPartialLeft  (void) const;    bool IsPartialRight (void) const;    // set / remove e_Lim fuzz on left (5') or right (3') end    void SetPartialLeft (bool val);    void SetPartialRight(bool val);        private:    // Prohibit copy constructor and assignment operator    CSeq_point(const CSeq_point& value);    CSeq_point& operator=(const CSeq_point& value);    bool x_IsMinusStrand(void) const;};/////////////////// CSeq_point inline methods// constructorinlineCSeq_point::CSeq_point(void){}inlineCSeq_point::CSeq_point(TId& id, TPoint point, TStrand strand){    SetPoint(point);    SetId(id);    if ( strand != eNa_strand_unknown ) {        SetStrand(strand);    }}/////////////////// end of CSeq_point inline methodsEND_objects_SCOPE // namespace ncbi::objects::END_NCBI_SCOPE#endif // OBJECTS_SEQLOC_SEQ_POINT_HPP/* Original file checksum: lines: 90, chars: 2400, CRC32: 5b2ee1f6 */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -