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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: choice.inl,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 17:20:30  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #if defined(CHOICE__HPP)  &&  !defined(CHOICE__INL)
  10. #define CHOICE__INL
  11. /*  $Id: choice.inl,v 1000.0 2003/10/29 17:20:30 gouriano Exp $
  12. * ===========================================================================
  13. *
  14. *                            PUBLIC DOMAIN NOTICE
  15. *               National Center for Biotechnology Information
  16. *
  17. *  This software/database is a "United States Government Work" under the
  18. *  terms of the United States Copyright Act.  It was written as part of
  19. *  the author's official duties as a United States Government employee and
  20. *  thus cannot be copyrighted.  This software/database is freely available
  21. *  to the public for use. The National Library of Medicine and the U.S.
  22. *  Government have not placed any restriction on its use or reproduction.
  23. *
  24. *  Although all reasonable efforts have been taken to ensure the accuracy
  25. *  and reliability of the software and data, the NLM and the U.S.
  26. *  Government do not and cannot warrant the performance or results that
  27. *  may be obtained by using this software or data. The NLM and the U.S.
  28. *  Government disclaim all warranties, express or implied, including
  29. *  warranties of performance, merchantability or fitness for any particular
  30. *  purpose.
  31. *
  32. *  Please cite the author in any work or product based on this material.
  33. *
  34. * ===========================================================================
  35. *
  36. * Author: Eugene Vasilchenko
  37. *
  38. * File Description:
  39. *   !!! PUT YOUR DESCRIPTION HERE !!!
  40. */
  41. inline
  42. TMemberIndex CChoiceTypeInfo::GetIndex(TConstObjectPtr object) const
  43. {
  44.     return m_WhichFunction(this, object);
  45. }
  46. inline
  47. void CChoiceTypeInfo::ResetIndex(TObjectPtr object) const
  48. {
  49.     m_ResetFunction(this, object);
  50. }
  51. inline
  52. void CChoiceTypeInfo::SetIndex(TObjectPtr object,
  53.                                TMemberIndex index) const
  54. {
  55.     m_SelectFunction(this, object, index);
  56. }
  57. inline
  58. const CItemsInfo& CChoiceTypeInfo::GetVariants(void) const
  59. {
  60.     return GetItems();
  61. }
  62. inline
  63. const CVariantInfo* CChoiceTypeInfo::GetVariantInfo(TMemberIndex index) const
  64. {
  65.     return static_cast<const CVariantInfo*>(GetVariants().GetItemInfo(index));
  66. }
  67. inline
  68. const CVariantInfo* CChoiceTypeInfo::GetVariantInfo(const CIterator& i) const
  69. {
  70.     return GetVariantInfo(*i);
  71. }
  72. inline
  73. const CVariantInfo* CChoiceTypeInfo::GetVariantInfo(const string& name) const
  74. {
  75.     return GetVariantInfo(GetVariants().Find(name));
  76. }
  77. inline
  78. TConstObjectPtr CChoiceTypeInfo::GetData(TConstObjectPtr object,
  79.                                          TMemberIndex index) const
  80. {
  81.     const CVariantInfo* variantInfo = GetVariantInfo(index);
  82.     return variantInfo->GetVariantPtr(object);
  83. }
  84. inline
  85. TObjectPtr CChoiceTypeInfo::GetData(TObjectPtr object,
  86.                                     TMemberIndex index) const
  87. {
  88.     const CVariantInfo* variantInfo = GetVariantInfo(index);
  89.     return variantInfo->GetVariantPtr(object);
  90. }
  91. #endif /* def CHOICE__HPP  &&  ndef CHOICE__INL */
  92. /* ---------------------------------------------------------------------------
  93. * $Log: choice.inl,v $
  94. * Revision 1000.0  2003/10/29 17:20:30  gouriano
  95. * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.4
  96. *
  97. * Revision 1.4  2002/12/23 18:38:50  dicuccio
  98. * Added WIn32 export specifier: NCBI_XSERIAL_EXPORT.
  99. * Moved all CVS logs to the end.
  100. *
  101. * Revision 1.3  2002/12/12 21:10:25  gouriano
  102. * implemented handling of complex XML containers
  103. *
  104. * Revision 1.2  2000/10/03 17:22:30  vasilche
  105. * Reduced header dependency.
  106. * Reduced size of debug libraries on WorkShop by 3 times.
  107. * Fixed tag allocation for parent classes.
  108. * Fixed CObject allocation/deallocation in streams.
  109. * Moved instantiation of several templates in separate source file.
  110. *
  111. * Revision 1.1  2000/09/18 19:59:59  vasilche
  112. * Separated CVariantInfo and CMemberInfo.
  113. * Implemented copy hooks.
  114. * All hooks now are stored in CTypeInfo/CMemberInfo/CVariantInfo.
  115. * Most type specific functions now are implemented via function pointers instead of virtual functions.
  116. *
  117. * ===========================================================================
  118. */