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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: stdtypes.inl,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 17:31:17  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.6
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #if defined(STDTYPES__HPP)  &&  !defined(STDTYPES__INL)
  10. #define STDTYPES__INL
  11. /*  $Id: stdtypes.inl,v 1000.0 2003/10/29 17:31:17 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. EPrimitiveValueType CPrimitiveTypeInfo::GetPrimitiveValueType(void) const
  43. {
  44.     return m_ValueType;
  45. }
  46. inline
  47. bool CPrimitiveTypeInfo::IsSigned(void) const
  48. {
  49.     return m_Signed;
  50. }
  51. #if SIZEOF_INT != 4
  52. #  error Unsupported size of int - must be 4 bytes
  53. #endif
  54. inline
  55. int CPrimitiveTypeInfo::GetValueInt(TConstObjectPtr objectPtr) const
  56. {
  57.     return int(GetValueInt4(objectPtr));
  58. }
  59. inline
  60. void CPrimitiveTypeInfo::SetValueInt(TObjectPtr objectPtr, int value) const
  61. {
  62.     SetValueInt4(objectPtr, Int4(value));
  63. }
  64. inline
  65. unsigned CPrimitiveTypeInfo::GetValueUInt(TConstObjectPtr objectPtr) const
  66. {
  67.     return unsigned(GetValueUint4(objectPtr));
  68. }
  69. inline
  70. void CPrimitiveTypeInfo::SetValueUInt(TObjectPtr objectPtr,
  71.                                       unsigned value) const
  72. {
  73.     SetValueUint4(objectPtr, Uint4(value));
  74. }
  75. #if SIZEOF_LONG != 8 && SIZEOF_LONG != 4
  76. #  error Unsupported size of long - must be 4 or 8
  77. #endif
  78. inline
  79. long CPrimitiveTypeInfo::GetValueLong(TConstObjectPtr objectPtr) const
  80. {
  81. #if SIZEOF_LONG == 8
  82.     return long(GetValueInt8(objectPtr));
  83. #else
  84.     return long(GetValueInt4(objectPtr));
  85. #endif
  86. }
  87. inline
  88. void CPrimitiveTypeInfo::SetValueLong(TObjectPtr objectPtr, long value) const
  89. {
  90. #if SIZEOF_LONG == 8
  91.     SetValueInt8(objectPtr, Int8(value));
  92. #else
  93.     SetValueInt4(objectPtr, Int4(value));
  94. #endif
  95. }
  96. inline
  97. unsigned long CPrimitiveTypeInfo::GetValueULong(TConstObjectPtr objectPtr) const
  98. {
  99. #if SIZEOF_LONG == 8
  100.     return static_cast<unsigned long>(GetValueUint8(objectPtr));
  101. #else
  102.     return static_cast<unsigned long>(GetValueUint4(objectPtr));
  103. #endif
  104. }
  105. inline
  106. void CPrimitiveTypeInfo::SetValueULong(TObjectPtr objectPtr,
  107.                                        unsigned long value) const
  108. {
  109. #if SIZEOF_LONG == 8
  110.     SetValueUint8(objectPtr, Uint8(value));
  111. #else
  112.     SetValueUint4(objectPtr, Uint4(value));
  113. #endif
  114. }
  115. #endif /* def STDTYPES__HPP  &&  ndef STDTYPES__INL */
  116. /* ---------------------------------------------------------------------------
  117. * $Log: stdtypes.inl,v $
  118. * Revision 1000.0  2003/10/29 17:31:17  gouriano
  119. * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.6
  120. *
  121. * Revision 1.6  2002/12/23 18:38:51  dicuccio
  122. * Added WIn32 export specifier: NCBI_XSERIAL_EXPORT.
  123. * Moved all CVS logs to the end.
  124. *
  125. * Revision 1.5  2000/12/15 15:38:02  vasilche
  126. * Added support of Int8 and long double.
  127. * Enum values now have type Int4 instead of long.
  128. *
  129. * Revision 1.4  2000/10/13 16:28:32  vasilche
  130. * Reduced header dependency.
  131. * Avoid use of templates with virtual methods.
  132. * Reduced amount of different maps used.
  133. * All this lead to smaller compiled code size (libraries and programs).
  134. *
  135. * Revision 1.3  2000/09/18 20:00:10  vasilche
  136. * Separated CVariantInfo and CMemberInfo.
  137. * Implemented copy hooks.
  138. * All hooks now are stored in CTypeInfo/CMemberInfo/CVariantInfo.
  139. * Most type specific functions now are implemented via function pointers instead of virtual functions.
  140. *
  141. * Revision 1.2  1999/06/04 20:51:39  vasilche
  142. * First compilable version of serialization.
  143. *
  144. * Revision 1.1  1999/05/19 19:56:30  vasilche
  145. * Commit just in case.
  146. *
  147. * ===========================================================================
  148. */