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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: classctx.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 17:34:30  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef CLASSCTX_HPP
  10. #define CLASSCTX_HPP
  11. /*  $Id: classctx.hpp,v 1000.0 2003/10/29 17:34: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. *   Class code generator
  40. *
  41. * ---------------------------------------------------------------------------
  42. * $Log: classctx.hpp,v $
  43. * Revision 1000.0  2003/10/29 17:34:30  gouriano
  44. * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.4
  45. *
  46. * Revision 1.4  2000/04/17 19:11:04  vasilche
  47. * Fixed failed assertion.
  48. * Removed redundant namespace specifications.
  49. *
  50. * Revision 1.3  2000/04/07 19:26:07  vasilche
  51. * Added namespace support to datatool.
  52. * By default with argument -oR datatool will generate objects in namespace
  53. * NCBI_NS_NCBI::objects (aka ncbi::objects).
  54. * Datatool's classes also moved to NCBI namespace.
  55. *
  56. * Revision 1.2  2000/02/17 20:05:02  vasilche
  57. * Inline methods now will be generated in *_Base.inl files.
  58. * Fixed processing of StringStore.
  59. * Renamed in choices: Selected() -> Which(), E_choice -> E_Choice.
  60. * Enumerated values now will preserve case as in ASN.1 definition.
  61. *
  62. * Revision 1.1  2000/02/01 21:46:15  vasilche
  63. * Added CGeneratedChoiceTypeInfo for generated choice classes.
  64. * Removed CMemberInfo subclasses.
  65. * Added support for DEFAULT/OPTIONAL members.
  66. * Changed class generation.
  67. * Moved datatool headers to include/internal/serial/tool.
  68. *
  69. * Revision 1.15  1999/12/29 16:01:50  vasilche
  70. * Added explicit virtual destructors.
  71. * Resolved overloading of InternalResolve.
  72. *
  73. * Revision 1.14  1999/11/19 15:48:09  vasilche
  74. * Modified AutoPtr template to allow its use in STL containers (map, vector etc.)
  75. *
  76. * Revision 1.13  1999/11/18 17:13:06  vasilche
  77. * Fixed generation of ENUMERATED CHOICE and VisibleString.
  78. * Added generation of initializers to zero for primitive types and pointers.
  79. *
  80. * Revision 1.12  1999/11/15 19:36:14  vasilche
  81. * Fixed warnings on GCC
  82. *
  83. * ===========================================================================
  84. */
  85. #include <corelib/ncbistd.hpp>
  86. #include <corelib/ncbistre.hpp>
  87. #include <set>
  88. BEGIN_NCBI_SCOPE
  89. class CDataType;
  90. class CChoiceDataType;
  91. class CFileCode;
  92. class CNamespace;
  93. class CClassContext
  94. {
  95. public:
  96.     virtual ~CClassContext(void);
  97.     typedef set<string> TIncludes;
  98.     virtual string GetMethodPrefix(void) const = 0;
  99.     virtual TIncludes& HPPIncludes(void) = 0;
  100.     virtual TIncludes& CPPIncludes(void) = 0;
  101.     virtual void AddForwardDeclaration(const string& className,
  102.                                        const CNamespace& ns) = 0;
  103.     virtual void AddHPPCode(const CNcbiOstrstream& code) = 0;
  104.     virtual void AddINLCode(const CNcbiOstrstream& code) = 0;
  105.     virtual void AddCPPCode(const CNcbiOstrstream& code) = 0;
  106.     virtual const CNamespace& GetNamespace(void) const = 0;
  107. };
  108. END_NCBI_SCOPE
  109. #endif