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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: hellores.cpp,v $
  4.  * PRODUCTION Revision 1000.0  2004/06/01 18:32:48  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: hellores.cpp,v 1000.0 2004/06/01 18:32:48 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:  Lewis Geer, Vsevolod Sandomirskiy, etc.
  35.  *
  36.  * File Description:  Defines the resource class, whose main purpose is to 
  37.  *   aggregate (or hold) classes used to execute the program.  Classes
  38.  *   aggregated include:
  39.  *
  40.  *   CNcbiRegistry: opens the *.ini file and reads the entries contained
  41.  *       within.
  42.  *
  43.  *   CNcbiCommand: classes executed when particular CGI parameters are
  44.  *       received.
  45.  *
  46.  */
  47. #include <ncbi_pch.hpp>
  48. #include "hellores.hpp"
  49. #include "hellocmd.hpp"
  50. #include <cgi/cgictx.hpp>
  51. #include <corelib/ncbiutil.hpp>
  52. BEGIN_NCBI_SCOPE
  53. //
  54. // class CHelloResource 
  55. //
  56. CHelloResource::CHelloResource( CNcbiRegistry& config )
  57.     : CNcbiResource( config )
  58. {}
  59.     
  60. CHelloResource::~CHelloResource()
  61. {}
  62. CNcbiCommand* CHelloResource::GetDefaultCommand( void ) const
  63. {
  64.     return new CHelloBasicCommand( const_cast<CHelloResource&>( *this ) );
  65.     
  66.     // CHelloBasicCommand is defined in hellocmd.hpp
  67. }
  68. END_NCBI_SCOPE
  69. /*
  70.  * ===========================================================================
  71.  * $Log: hellores.cpp,v $
  72.  * Revision 1000.0  2004/06/01 18:32:48  gouriano
  73.  * PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.2
  74.  *
  75.  * Revision 1.2  2004/05/21 21:41:41  gorelenk
  76.  * Added PCH ncbi_pch.hpp
  77.  *
  78.  * Revision 1.1  2004/05/04 14:44:21  kuznets
  79.  * MOving from the root "hello" to the new location
  80.  *
  81.  * Revision 1.3  2002/04/16 18:50:30  ivanov
  82.  * Centralize threatment of assert() in tests.
  83.  * Added #include <test/test_assert.h>. CVS log moved to end of file.
  84.  *
  85.  * Revision 1.2  1999/11/10 01:01:06  lewisg
  86.  * get rid of namespace
  87.  *
  88.  * Revision 1.1  1999/10/25 21:15:55  lewisg
  89.  * first draft of simple cgi app
  90.  *
  91.  * ===========================================================================
  92.  */