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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: asnwrite.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 19:49:01  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.9
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef ASNWRITE__HPP
  10. #define ASNWRITE__HPP
  11. /*  $Id: asnwrite.hpp,v 1000.0 2003/10/29 19:49:01 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. * ---------------------------------------------------------------------------
  42. * $Log: asnwrite.hpp,v $
  43. * Revision 1000.0  2003/10/29 19:49:01  gouriano
  44. * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.9
  45. *
  46. * Revision 1.9  2001/05/17 14:49:59  lavr
  47. * Typos corrected
  48. *
  49. * Revision 1.8  2001/02/10 05:00:04  lavr
  50. * ctools added in #includes
  51. *
  52. * Revision 1.7  2000/11/29 17:25:11  vasilche
  53. * Added possibility to change ASNIO mode (mainly for XML output).
  54. * Fixed warnings on 64 bit compilers.
  55. *
  56. * Revision 1.6  1999/11/24 20:18:09  golikov
  57. * flush moved from CreateSubNodes to PrintChildren -> loose of text fixed
  58. *
  59. * Revision 1.5  1999/05/15 23:00:56  vakatov
  60. * Moved "asnio" and "asnwrite" modules to the (new) library
  61. * "xasn"(project "asn")
  62. *
  63. * Revision 1.4  1999/04/14 17:26:49  vasilche
  64. * Fixed warning about mixing pointers to "C" and "C++" functions.
  65. *
  66. * Revision 1.3  1999/02/26 21:03:29  vasilche
  67. * CAsnWriteNode made simple node. Use CHTML_pre explicitly.
  68. * Fixed bug in CHTML_table::Row.
  69. * Added CHTML_table::HeaderCell & DataCell methods.
  70. *
  71. * Revision 1.2  1999/02/18 18:42:14  vasilche
  72. * Added autoflushing.
  73. *
  74. * Revision 1.1  1999/01/28 15:11:06  vasilche
  75. * Added new class CAsnWriteNode for displaying ASN.1 structure in HTML page.
  76. * ===========================================================================
  77. */
  78. #include <corelib/ncbistd.hpp>
  79. #include <html/html.hpp>
  80. #include <asn.h>
  81. BEGIN_NCBI_SCOPE
  82. class CAsnWriteNode : public CHTMLNode
  83. {
  84. public:
  85.     CAsnWriteNode(void);
  86.     CAsnWriteNode(int mode); // ASNIO_TEXT or ASNIO_XML
  87.     ~CAsnWriteNode(void);
  88.     AsnIoPtr GetOut(void);
  89.     operator AsnIoPtr(void)
  90.         { return GetOut(); }
  91.     virtual CNcbiOstream& PrintChildren(CNcbiOstream& out, TMode mode);
  92. private:
  93.     // ASN.1 communication interface
  94.     //    static Int2 WriteAsn(Pointer data, CharPtr buffer, Uint2 size);
  95.     // cached ASN.1 communication interface pointer
  96.     AsnIoPtr m_Out;
  97.     int m_Mode;
  98. };
  99. #include <ctools/asn/asnwrite.inl>
  100. END_NCBI_SCOPE
  101. #endif  /* ASNWRITE__HPP */