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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: selection.hpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/04/01 21:02:15  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CORE_002] Dev-tree R1.8
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef HTML___SELECTION__HPP
  10. #define HTML___SELECTION__HPP
  11. /*  $Id: selection.hpp,v 1000.3 2004/04/01 21:02:15 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.  */
  39. /// @file selection.hpp
  40. /// 
  41. #include <corelib/ncbistd.hpp>
  42. #include <html/node.hpp>
  43. #include <html/htmlhelper.hpp>
  44. /** @addtogroup HTMLcomp
  45.  *
  46.  * @{
  47.  */
  48. BEGIN_NCBI_SCOPE
  49. // Forward declaration.
  50. class CCgiRequest;
  51. class NCBI_XHTML_EXPORT CSelection : public CNCBINode, public CIDs
  52. {
  53. public:
  54.     static string sm_DefaultCheckboxName;
  55.     static string sm_DefaultSaveName;
  56.     CSelection(const CCgiRequest& request,
  57.                const string& checkboxName = sm_DefaultCheckboxName,
  58.                const string& saveName     = sm_DefaultSaveName);
  59.     virtual void CreateSubNodes(void);
  60. private:
  61.     const string m_SaveName;
  62. };
  63. END_NCBI_SCOPE
  64. /* @} */
  65. /*
  66.  * ===========================================================================
  67.  * $Log: selection.hpp,v $
  68.  * Revision 1000.3  2004/04/01 21:02:15  gouriano
  69.  * PRODUCTION: UPGRADED [CORE_002] Dev-tree R1.8
  70.  *
  71.  * Revision 1.8  2004/01/16 15:12:32  ivanov
  72.  * Minor cosmetic changes
  73.  *
  74.  * Revision 1.7  2003/11/05 18:41:06  dicuccio
  75.  * Added export specifiers
  76.  *
  77.  * Revision 1.6  2003/11/03 17:02:53  ivanov
  78.  * Some formal code rearrangement. Move log to end.
  79.  *
  80.  * Revision 1.5  2003/04/25 13:45:40  siyan
  81.  * Added doxygen groupings
  82.  *
  83.  * Revision 1.4  2001/05/17 14:55:48  lavr
  84.  * Typos corrected
  85.  *
  86.  * Revision 1.3  1999/05/12 21:11:44  vakatov
  87.  * Minor fixes to compile by the Mac CodeWarrior C++ compiler
  88.  *
  89.  * Revision 1.2  1999/03/26 22:00:00  sandomir
  90.  * checked option in Radio button fixed; minor fixes in Selection
  91.  *
  92.  * Revision 1.1  1999/01/20 17:39:43  vasilche
  93.  * Selection as separate class CSelection.
  94.  *
  95.  * ===========================================================================
  96.  */
  97. #endif  /* HTML___SELECTION__HPP */