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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: version.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2003/11/25 16:03:39  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [ORIGINAL] Dev-tree R1.14
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_CORE___VERSION__HPP
  10. #define GUI_CORE___VERSION__HPP
  11. /*  $Id: version.hpp,v 1000.1 2003/11/25 16:03:39 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.  * Authors:  Mike DiCuccio
  37.  *
  38.  * File Description:
  39.  *    Versioning info for GBENCH
  40.  */
  41. #include <corelib/ncbistd.hpp>
  42. BEGIN_NCBI_SCOPE
  43. class NCBI_GUICORE_EXPORT CPluginVersion
  44. {
  45. public:
  46.     enum {
  47.         eMajor = 0,  // absolute (in)compatibility
  48.         eMinor = 9   // backward (in)compatibility
  49.     };
  50.     static bool CheckVersion(int major, int minor);
  51. };
  52. END_NCBI_SCOPE
  53. #endif  // GUI_CORE___VERSION__HPP
  54. /*
  55.  * ===========================================================================
  56.  * $Log: version.hpp,v $
  57.  * Revision 1000.1  2003/11/25 16:03:39  gouriano
  58.  * PRODUCTION: UPGRADED [ORIGINAL] Dev-tree R1.14
  59.  *
  60.  * Revision 1.14  2003/11/24 15:38:51  dicuccio
  61.  * Renamed CVersion to CPluginVersion
  62.  *
  63.  * Revision 1.13  2003/07/31 16:42:49  dicuccio
  64.  * Bumped version to 0.8
  65.  *
  66.  * Revision 1.12  2003/06/25 16:59:41  dicuccio
  67.  * Changed CPluginHandle into a pointer-to-implementation (the previous
  68.  * implementation is now the pointer held).  Lots of #include file clean-ups.
  69.  *
  70.  * Revision 1.11  2003/05/05 12:39:18  dicuccio
  71.  * Bump version to 0.7
  72.  *
  73.  * Revision 1.10  2003/02/20 19:44:06  dicuccio
  74.  * Created new plugin architecture, mediated via an ASN.1 spec.  Moved GBENCH
  75.  * framework over to use new plugin architecture.
  76.  *
  77.  * Revision 1.9  2003/01/22 14:36:55  dicuccio
  78.  * Bumped version to 0.5.  Main highlights:
  79.  *     - improved rendering of features in graphical view
  80.  *     - improved handling of sequence mismatches in cross align view
  81.  *     - changed layout of cross alignment view
  82.  *
  83.  * Revision 1.8  2003/01/13 13:11:42  dicuccio
  84.  * Namespace clean-up.  Retired namespace gui -> converted to namespace ncbi.
  85.  * Moved all FLUID-generated code into namespace ncbi.
  86.  *
  87.  * Revision 1.7  2003/01/10 17:48:22  dicuccio
  88.  * Bump version to 0.4.  Highlights:
  89.  *     - feature table view: filters now work; still a bit clumsy
  90.  *     - added support for FLTK command-line options: '-scheme', '-bg', '-fg'
  91.  *     - sequence now visible as you zoom in to alignment in cross alignment
  92.  *       viewer
  93.  *
  94.  * Revision 1.6  2003/01/03 18:49:12  dicuccio
  95.  * Bump version to 0.3
  96.  *
  97.  * Revision 1.5  2002/12/23 14:12:03  dicuccio
  98.  * Bump version -> 0.2
  99.  *
  100.  * Revision 1.4  2002/12/19 18:13:02  dicuccio
  101.  * Added export specifiers for Win32.
  102.  *
  103.  * Revision 1.3  2002/12/09 20:40:06  dicuccio
  104.  * Bumped version to 0.1 - major changes: added user-level seq-annots; expanded
  105.  * file reading capability; additional viewers.
  106.  *
  107.  * Revision 1.2  2002/11/07 18:20:13  dicuccio
  108.  * Moved #ifdef to top of file.
  109.  *
  110.  * Revision 1.1  2002/11/05 19:42:53  dicuccio
  111.  * Initial revision
  112.  *
  113.  * ===========================================================================
  114.  */