- /*
- * ===========================================================================
- * PRODUCTION $Log: cdd_search.hpp,v $
- * PRODUCTION Revision 1000.3 2004/04/12 19:28:49 gouriano
- * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.4
- * PRODUCTION
- * ===========================================================================
- */
- #ifndef GUI_PLUGINS_ALGO_BASIC___CDD_SEARCH__HPP
- #define GUI_PLUGINS_ALGO_BASIC___CDD_SEARCH__HPP
- /* $Id: cdd_search.hpp,v 1000.3 2004/04/12 19:28:49 gouriano Exp $
- * ===========================================================================
- *
- * PUBLIC DOMAIN NOTICE
- * National Center for Biotechnology Information
- *
- * This software/database is a "United States Government Work" under the
- * terms of the United States Copyright Act. It was written as part of
- * the author's official duties as a United States Government employee and
- * thus cannot be copyrighted. This software/database is freely available
- * to the public for use. The National Library of Medicine and the U.S.
- * Government have not placed any restriction on its use or reproduction.
- *
- * Although all reasonable efforts have been taken to ensure the accuracy
- * and reliability of the software and data, the NLM and the U.S.
- * Government do not and cannot warrant the performance or results that
- * may be obtained by using this software or data. The NLM and the U.S.
- * Government disclaim all warranties, express or implied, including
- * warranties of performance, merchantability or fitness for any particular
- * purpose.
- *
- * Please cite the author in any work or product based on this material.
- *
- * ===========================================================================
- *
- * Authors: Mike DiCuccio
- *
- * File Description:
- * CAlgoCDDSearch - load sequence information from a file.
- */
- #include <gui/core/algo.hpp>
- BEGIN_NCBI_SCOPE
- BEGIN_SCOPE(objects)
- class CCddDataLoader;
- END_SCOPE(objects)
- class CAlgoPlugin_CDDSearch : public CAlgorithm<CAlgoPlugin_CDDSearch>
- {
- public:
- CAlgoPlugin_CDDSearch() { }
- ~CAlgoPlugin_CDDSearch();
- // pure virtual requirement: save some data
- void RunCommand(objects::CPluginMessage& msg);
- static void GetInfo(objects::CPluginInfo& info);
- private:
- static objects::CCddDataLoader* sm_Loader;
- CAlgoPlugin_CDDSearch(const CAlgoPlugin_CDDSearch&);
- CAlgoPlugin_CDDSearch& operator=(const CAlgoPlugin_CDDSearch&);
- };
- END_NCBI_SCOPE
- /*
- * ===========================================================================
- * $Log: cdd_search.hpp,v $
- * Revision 1000.3 2004/04/12 19:28:49 gouriano
- * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.4
- *
- * Revision 1.4 2004/01/27 18:37:34 dicuccio
- * Code clean-up. Use standard names for plugins. Removed unnecessary #includes
- *
- * Revision 1.3 2003/11/18 17:47:57 dicuccio
- * Made data loader static and thread-safe. Added standard processing for return values
- *
- * Revision 1.2 2003/11/04 17:49:22 dicuccio
- * Changed calling parameters for plugins - pass CPluginMessage instead of paired
- * CPluginCommand/CPluginReply
- *
- * Revision 1.1 2003/10/16 12:56:35 dicuccio
- * Added CDD Search facility. Cleaned up dll_register.cpp
- *
- * Revision 1.1 2003/09/16 14:06:48 dicuccio
- * Initial revision - split from CFileLoader
- *
- * ===========================================================================
- */
- #endif // GUI_PLUGINS_ALGO_BASIC___CDD_SEARCH__HPP