external.hpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:3k
- /*
- * ===========================================================================
- * PRODUCTION $Log: external.hpp,v $
- * PRODUCTION Revision 1000.1 2003/11/05 15:38:04 gouriano
- * PRODUCTION PRODUCTION: UPGRADED [ORIGINAL] Dev-tree R1.7
- * PRODUCTION
- * ===========================================================================
- */
- /* $Id: external.hpp,v 1000.1 2003/11/05 15:38:04 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: Josh Cherry
- *
- * File Description:
- *
- */
- #ifndef GUI_PLUGINS_ALGO_EXTERNAL___EXTERNAL__HPP
- #define GUI_PLUGINS_ALGO_EXTERNAL___EXTERNAL__HPP
- #include <gui/core/algo.hpp>
- #include <objmgr/seq_vector.hpp>
- #include "../basic/output_dlg.hpp"
- BEGIN_NCBI_SCOPE
- class CExternal : public CAlgorithm<CExternal>
- {
- public:
- void RunCommand(objects::CPluginMessage& msg);
- static void GetInfo(objects::CPluginInfo& info);
- private:
- // our dialog box
- auto_ptr<COutputDlg> m_OutputDlg;
- };
- END_NCBI_SCOPE
- #endif // GUI_PLUGINS_ALGO_EXTERNAL___EXTERNAL__HPP
- /*
- * ===========================================================================
- * $Log: external.hpp,v $
- * Revision 1000.1 2003/11/05 15:38:04 gouriano
- * PRODUCTION: UPGRADED [ORIGINAL] Dev-tree R1.7
- *
- * Revision 1.7 2003/11/04 21:17:46 dicuccio
- * Changed calling semantics to match new plugin API
- *
- * Revision 1.6 2003/09/04 14:05:24 dicuccio
- * Use IDocument instead of CDocument
- *
- * Revision 1.5 2003/07/28 18:17:04 jcherry
- * Moved code for actually executing a program to a separate
- * class (CExec). Moved 'external' into a new project.
- *
- * Revision 1.4 2003/07/14 11:12:25 shomrat
- * Plugin messageing system related changes
- *
- * Revision 1.3 2003/06/20 14:52:36 dicuccio
- * Revised plugin registration - moved GetInfo() into the plugin handler
- *
- * Revision 1.2 2003/06/20 11:34:22 dicuccio
- * Compilation fix: stdin/stdout/stderr are reserved keywords
- *
- * Revision 1.1 2003/06/19 19:12:42 jcherry
- * Initial version of interface for running external executables
- * from gbench. For now this just passes sequences on stdin.
- *
- * ===========================================================================
- */