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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: cav_main.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 20:57:39  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: cav_main.hpp,v 1000.0 2003/10/29 20:57:39 gouriano Exp $
  10. * ===========================================================================
  11. *
  12. *                            PUBLIC DOMAIN NOTICE
  13. *               National Center for Biotechnology Information
  14. *
  15. *  This software/database is a "United States Government Work" under the
  16. *  terms of the United States Copyright Act.  It was written as part of
  17. *  the author's official duties as a United States Government employee and
  18. *  thus cannot be copyrighted.  This software/database is freely available
  19. *  to the public for use. The National Library of Medicine and the U.S.
  20. *  Government have not placed any restriction on its use or reproduction.
  21. *
  22. *  Although all reasonable efforts have been taken to ensure the accuracy
  23. *  and reliability of the software and data, the NLM and the U.S.
  24. *  Government do not and cannot warrant the performance or results that
  25. *  may be obtained by using this software or data. The NLM and the U.S.
  26. *  Government disclaim all warranties, express or implied, including
  27. *  warranties of performance, merchantability or fitness for any particular
  28. *  purpose.
  29. *
  30. *  Please cite the author in any work or product based on this material.
  31. *
  32. * ===========================================================================
  33. *
  34. * Authors:  Paul Thiessen
  35. *
  36. * File Description:
  37. *      Main application class for CDDAlignmentViewer
  38. *
  39. * ===========================================================================
  40. */
  41. #ifndef CAV_MAIN__HPP
  42. #define CAV_MAIN__HPP
  43. #include <corelib/ncbiapp.hpp>
  44. BEGIN_NCBI_SCOPE
  45. // class for standalone application
  46. class CAVApp : public CNcbiApplication
  47. {
  48. public:
  49.     void Init(void);
  50.     int Run(void);
  51. };
  52. END_NCBI_SCOPE
  53. #endif // CAV_MAIN__HPP
  54. /*
  55. * ---------------------------------------------------------------------------
  56. * $Log: cav_main.hpp,v $
  57. * Revision 1000.0  2003/10/29 20:57:39  gouriano
  58. * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.1
  59. *
  60. * Revision 1.1  2003/03/19 19:05:42  thiessen
  61. * move again
  62. *
  63. * Revision 1.1  2003/03/19 05:33:43  thiessen
  64. * move to src/app/cddalignview
  65. *
  66. * Revision 1.8  2003/02/03 17:52:03  thiessen
  67. * move CVS Log to end of file
  68. *
  69. * Revision 1.7  2003/01/21 12:32:23  thiessen
  70. * move includes into src dir
  71. *
  72. * Revision 1.6  2002/11/08 19:38:15  thiessen
  73. * add option for lowercase unaligned in FASTA
  74. *
  75. * Revision 1.5  2001/01/29 18:13:41  thiessen
  76. * split into C-callable library + main
  77. *
  78. * Revision 1.4  2001/01/25 20:18:39  thiessen
  79. * fix in-memory asn read/write
  80. *
  81. * Revision 1.3  2001/01/25 00:50:51  thiessen
  82. * add command-line args; can read asn data from stdin
  83. *
  84. * Revision 1.2  2001/01/22 15:54:11  thiessen
  85. * correctly set up ncbi namespacing
  86. *
  87. * Revision 1.1  2001/01/22 13:15:52  thiessen
  88. * initial checkin
  89. *
  90. */