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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: objstrb.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 17:28:52  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.11
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef OBJSTRB__HPP
  10. #define OBJSTRB__HPP
  11. /*  $Id: objstrb.hpp,v 1000.0 2003/10/29 17:28:52 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. #include <corelib/ncbistd.hpp>
  42. /** @addtogroup ObjStreamSupport
  43.  *
  44.  * @{
  45.  */
  46. BEGIN_NCBI_SCOPE
  47. namespace CObjectStreamBinaryDefs
  48. {
  49.     enum {
  50.         eNull = 0,
  51.         eStd_char = 0xC0, // char
  52.         eStd_ubyte,       // unsigned char or any with sizeof() == 1
  53.         eStd_sbyte,       // signed char or any with sizeof() == 1
  54.         eStd_uordinal,    // any unsigned
  55.         eStd_sordinal,    // any signed
  56.         eStd_string,      // string
  57.         eStd_float,       // float, double, long double
  58.         eStd_false,
  59.         eStd_true,
  60.         eBlock = 0xE0,
  61.         eObjectReference,
  62.         eMemberReference,
  63.         eThisClass,
  64.         eOtherClass,
  65.         eElement,
  66.         eEndOfElements,
  67.         eBytes,
  68.         eMember
  69.     };
  70. }
  71. /* @} */
  72. //#include <objstrb.inl>
  73. END_NCBI_SCOPE
  74. #endif  /* OBJSTRB__HPP */
  75. /* ---------------------------------------------------------------------------
  76. * $Log: objstrb.hpp,v $
  77. * Revision 1000.0  2003/10/29 17:28:52  gouriano
  78. * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.11
  79. *
  80. * Revision 1.11  2003/04/15 16:18:36  siyan
  81. * Added doxygen support
  82. *
  83. * Revision 1.10  2003/03/26 16:13:33  vasilche
  84. * Removed TAB symbols. Some formatting.
  85. *
  86. * Revision 1.9  2002/12/23 18:38:51  dicuccio
  87. * Added WIn32 export specifier: NCBI_XSERIAL_EXPORT.
  88. * Moved all CVS logs to the end.
  89. *
  90. * Revision 1.8  1999/07/26 18:31:31  vasilche
  91. * Implemented skipping of unused values.
  92. * Added more useful error report.
  93. *
  94. * Revision 1.7  1999/07/21 14:20:01  vasilche
  95. * Added serialization of bool.
  96. *
  97. * Revision 1.6  1999/07/09 20:27:02  vasilche
  98. * Fixed some bugs
  99. *
  100. * Revision 1.5  1999/07/09 16:32:54  vasilche
  101. * Added OCTET STRING write/read.
  102. *
  103. * Revision 1.4  1999/06/15 16:20:05  vasilche
  104. * Added ASN.1 object output stream.
  105. *
  106. * Revision 1.3  1999/06/10 21:06:41  vasilche
  107. * Working binary output and almost working binary input.
  108. *
  109. * Revision 1.2  1999/06/04 20:51:36  vasilche
  110. * First compilable version of serialization.
  111. *
  112. * Revision 1.1  1999/05/19 19:56:27  vasilche
  113. * Commit just in case.
  114. *
  115. * ===========================================================================
  116. */