id1_client.hpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:4k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: id1_client.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:30:31  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: id1_client.hpp,v 1000.1 2004/06/01 19:30:31 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Author:  Aaron Ucko, NCBI
  35.  *
  36.  * File Description:
  37.  *   ID1 network client
  38.  *
  39.  * Remark:
  40.  *   This code was originally generated by application DATATOOL
  41.  *   using specifications from the data definition file
  42.  *   'id1.asn'.
  43.  */
  44. #ifndef OBJECTS_ID1_ID1_CLIENT_HPP
  45. #define OBJECTS_ID1_ID1_CLIENT_HPP
  46. // generated includes
  47. #include <objects/id1/id1_client_.hpp>
  48. // generated classes
  49. BEGIN_NCBI_SCOPE
  50. BEGIN_objects_SCOPE // namespace ncbi::objects::
  51. class NCBI_ID1_EXPORT CID1Client : public CID1Client_Base
  52. {
  53.     typedef CID1Client_Base Tparent;
  54. public:
  55.     // constructor
  56.     CID1Client(void);
  57.     // destructor
  58.     ~CID1Client(void);
  59.     void SetAllowDeadEntries(bool ok) { m_AllowDeadEntries = ok;   }
  60.     bool GetAllowDeadEntries(void)    { return m_AllowDeadEntries; }
  61.     virtual CRef<CSeq_entry> AskGetsefromgi(const CID1server_maxcomplex& req,
  62.                                             TReply* reply = 0);
  63.     // Simplified interface for retrieving entries by gi or sequence id
  64.     CRef<CSeq_entry> FetchEntry(int gi, int max_complexity = 0);
  65.     CRef<CSeq_entry> FetchEntry(const CSeq_id& id, int max_complexity = 0);
  66.     CRef<CSeq_entry> FetchEntry(const string& id_string,
  67.                                 int max_complexity = 0);
  68. private:
  69.     bool m_AllowDeadEntries;
  70.     // Prohibit copy constructor and assignment operator
  71.     CID1Client(const CID1Client& value);
  72.     CID1Client& operator=(const CID1Client& value);
  73. };
  74. /////////////////// CID1Client inline methods
  75. // constructor
  76. inline
  77. CID1Client::CID1Client(void)
  78.     : m_AllowDeadEntries(false)
  79. {
  80. }
  81. /////////////////// end of CID1Client inline methods
  82. END_objects_SCOPE // namespace ncbi::objects::
  83. END_NCBI_SCOPE
  84. /*
  85. * ===========================================================================
  86. *
  87. * $Log: id1_client.hpp,v $
  88. * Revision 1000.1  2004/06/01 19:30:31  gouriano
  89. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  90. *
  91. * Revision 1.2  2004/05/20 18:23:21  jcherry
  92. * Added a simplified interface for retrieving entries
  93. *
  94. * Revision 1.1  2003/04/09 16:00:13  ucko
  95. * Give all RPC clients unique basenames.
  96. *
  97. * Revision 1.2  2003/03/21 16:00:03  shomrat
  98. * Added export specifier
  99. *
  100. * Revision 1.1  2002/11/13 20:13:42  ucko
  101. * Add datatool-generated client classes
  102. *
  103. *
  104. * ===========================================================================
  105. */
  106. #endif // OBJECTS_ID1_ID1_CLIENT_HPP
  107. /* Original file checksum: lines: 93, chars: 2368, CRC32: 45b6687e */