seq_annot.hpp

来自「ncbi源码」· HPP 代码 · 共 141 行

HPP
141
字号
/* * =========================================================================== * PRODUCTION $Log: Seq_annot.hpp,v $ * PRODUCTION Revision 1000.1  2004/06/01 19:30:33  gouriano * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2 * PRODUCTION * =========================================================================== *//* $Id: Seq_annot.hpp,v 1000.1 2004/06/01 19:30:33 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 data definition file *   'seq.asn'. */#ifndef OBJECTS_SEQ_SEQ_ANNOT_HPP#define OBJECTS_SEQ_SEQ_ANNOT_HPP// generated includes#include <corelib/ncbitime.hpp>#include <objects/seq/Seq_annot_.hpp>// generated classesBEGIN_NCBI_SCOPEBEGIN_objects_SCOPE // namespace ncbi::objects::class CUser_object;class CDate;class NCBI_SEQ_EXPORT CSeq_annot : public CSeq_annot_Base{    typedef CSeq_annot_Base Tparent;public:    // constructor    CSeq_annot(void);    // destructor    ~CSeq_annot(void);    // Removes any existing CAnnotdesc(s) of type name and adds    // new CAnnotdesc of type name    void AddName(const string &name);    // Adds a CAnnotdesc of type title.  This will replace any previous    // title fields.    void AddTitle(const string &title);    void SetTitle(const string &title);    // Adds a CAnnotdesc of type comment    void AddComment(const string &comment);    // Add/Set the create-date field    void SetCreateDate(const CTime& dt);    void SetCreateDate(CDate& dt);    // Add/Set the create-date field    void SetUpdateDate(const CTime& dt);    void SetUpdateDate(CDate& dt);    // add a user-object descriptor    void AddUserObject(CUser_object& obj);private:    // Prohibit copy constructor and assignment operator    CSeq_annot(const CSeq_annot& value);    CSeq_annot& operator=(const CSeq_annot& value);};/////////////////// CSeq_annot inline methods// constructorinlineCSeq_annot::CSeq_annot(void){}/////////////////// end of CSeq_annot inline methodsEND_objects_SCOPE // namespace ncbi::objects::END_NCBI_SCOPE/** ===========================================================================** $Log: Seq_annot.hpp,v $* Revision 1000.1  2004/06/01 19:30:33  gouriano* PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2** Revision 1.2  2004/04/22 13:09:58  dicuccio* Added helper functions to set dates in descriptions** Revision 1.1  2003/05/07 10:59:14  clausen* Added AddName, AddTitle, AddCmment*** ===========================================================================*/#endif // OBJECTS_SEQ_SEQ_ANNOT_HPP/* Original file checksum: lines: 93, chars: 2396, CRC32: bdd8950d */

⌨️ 快捷键说明

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