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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: sage_manip.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:46:09  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: sage_manip.cpp,v 1000.1 2004/06/01 19:46:09 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:  Mike DiCuccio
  35.  *
  36.  * File Description:
  37.  *    CSageManip -- manipulator for SAGE data; encodes/decodes from
  38.  *                  a CUser_object
  39.  */
  40. #include <ncbi_pch.hpp>
  41. #include <objtools/manip/sage_manip.hpp>
  42. #include <objects/general/User_field.hpp>
  43. BEGIN_NCBI_SCOPE
  44. BEGIN_SCOPE(objects)
  45. static const string sc_tag    ("tag");
  46. static const string sc_count  ("count");
  47. static const string sc_method ("method");
  48. CConstSageData::CConstSageData(const CUser_object& obj)
  49.     : m_Object(const_cast<CUser_object*>(&obj))
  50. {
  51. }
  52. CConstSageData::~CConstSageData()
  53. {
  54. }
  55. const string& CConstSageData::GetTag(void) const
  56. {
  57.     return m_Object->GetField(sc_tag).GetData().GetStr();
  58. }
  59. int CConstSageData::GetCount(void) const
  60. {
  61.     return m_Object->GetField(sc_count).GetData().GetInt();
  62. }
  63. const CUser_field& CConstSageData::GetField(const string& field,
  64.                                             const string& delim)
  65. {
  66.     return m_Object->GetField(field, delim);
  67. }
  68. CSageData::CSageData(CUser_object& obj)
  69.     : CConstSageData(obj)
  70. {
  71. }
  72. string& CSageData::SetTag(void)
  73. {
  74.     return m_Object->SetField(sc_tag).SetData().SetStr();
  75. }
  76. void CSageData::SetTag(const string& str)
  77. {
  78.     m_Object->SetField(sc_tag).SetData().SetStr(str);
  79. }
  80. string& CSageData::SetMethod(void)
  81. {
  82.     return m_Object->SetField(sc_method).SetData().SetStr();
  83. }
  84. void CSageData::SetMethod(const string& str)
  85. {
  86.     m_Object->SetField(sc_method).SetData().SetStr(str);
  87. }
  88. void CSageData::SetCount(int count)
  89. {
  90.     m_Object->SetField(sc_count).SetData().SetInt(count);
  91. }
  92. CUser_field& CSageData::SetField(const string& field)
  93. {
  94.     return m_Object->SetField(field);
  95. }
  96. CUser_field& CSageData::SetField(const string& field, const string& value)
  97. {
  98.     CUser_field& f = m_Object->SetField(field);
  99.     f.SetData().SetStr(value);
  100.     return f;
  101. }
  102. END_SCOPE(objects)
  103. END_NCBI_SCOPE
  104. /*
  105.  * ===========================================================================
  106.  * $Log: sage_manip.cpp,v $
  107.  * Revision 1000.1  2004/06/01 19:46:09  gouriano
  108.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  109.  *
  110.  * Revision 1.2  2004/05/21 21:42:55  gorelenk
  111.  * Added PCH ncbi_pch.hpp
  112.  *
  113.  * Revision 1.1  2003/10/02 17:39:27  dicuccio
  114.  * Initial revision
  115.  *
  116.  * ===========================================================================
  117.  */