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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: function.hpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/04/16 16:53:42  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_GUI___FUNCTION__HPP
  10. #define GUI_GUI___FUNCTION__HPP
  11. /*  $Id: function.hpp,v 1000.2 2004/04/16 16:53:42 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:  Peter Meric
  37.  *
  38.  * File Description:
  39.  *    Function classes
  40.  */
  41. #include <corelib/ncbiobj.hpp>
  42. /** @addtogroup GUI_UTILS
  43.  *
  44.  * @{
  45.  */
  46. BEGIN_NCBI_SCOPE
  47. class NCBI_GUIUTILS_EXPORT CFuncPtr : public CObject
  48. {
  49. public:
  50.     void operator()()
  51.     {
  52.         Execute();
  53.     }
  54.     virtual void Execute(void) = 0;
  55. };
  56. template <typename T>
  57. class NCBI_GUIUTILS_EXPORT CFuncPtrTmpl : public CFuncPtr
  58. {
  59. public:
  60.     typedef void (T::*TMemFun)(void);
  61.     CFuncPtrTmpl(T* objptr, TMemFun memfun)
  62.         : m_ObjPtr(objptr), m_MemFun(memfun)
  63.     {
  64.     }
  65.     void Execute(void)
  66.     {
  67.         (m_ObjPtr->*m_MemFun)();
  68.     }
  69. private:
  70.     T* m_ObjPtr;
  71.     TMemFun m_MemFun;
  72. };
  73. template <typename RetType, typename Arg1>
  74. class NCBI_GUIUTILS_EXPORT CFuncPtr1 : public CObject
  75. {
  76. public:
  77.     RetType operator()(Arg1 arg1)
  78.     {
  79.         return Execute(arg1);
  80.     }
  81.     virtual RetType Execute(Arg1 arg1) = 0;
  82. };
  83. template <typename T, typename RetType, typename Arg1>
  84. class NCBI_GUIUTILS_EXPORT CFuncPtrTmpl1 : public CFuncPtr1<RetType, Arg1>
  85. {
  86. public:
  87.     typedef RetType (T::*TMemFun)(Arg1);
  88.     CFuncPtrTmpl1(T* objptr, TMemFun memfun)
  89.         : m_ObjPtr(objptr), m_MemFun(memfun)
  90.     {
  91.     }
  92.     RetType Execute(Arg1 arg1)
  93.     {
  94.         return (m_ObjPtr->*m_MemFun)(arg1);
  95.     }
  96. private:
  97.     T* m_ObjPtr;
  98.     TMemFun m_MemFun;
  99. };
  100. /*****************************************************************************/
  101. template <typename Arg1>
  102. class NCBI_GUIUTILS_EXPORT CVoidFuncPtr1 : public CObject
  103. {
  104. public:
  105.     void operator()(Arg1 arg1)
  106.     {
  107.         Execute(arg1);
  108.     }
  109.     virtual void Execute(Arg1 arg1) = 0;
  110. };
  111. template <typename T, typename Arg1>
  112. class NCBI_GUIUTILS_EXPORT CVoidFuncPtrTmpl1 : public CVoidFuncPtr1<Arg1>
  113. {
  114. public:
  115.     typedef void (T::*TMemFun)(Arg1);
  116.     CVoidFuncPtrTmpl1(T* objptr, TMemFun memfun)
  117.         : m_ObjPtr(objptr), m_MemFun(memfun)
  118.     {
  119.     }
  120.     void Execute(Arg1 arg1)
  121.     {
  122.         (m_ObjPtr->*m_MemFun)(arg1);
  123.     }
  124. private:
  125.     T* m_ObjPtr;
  126.     TMemFun m_MemFun;
  127. };
  128. END_NCBI_SCOPE
  129. /* @} */
  130. /*
  131.  * ===========================================================================
  132.  * $Log: function.hpp,v $
  133.  * Revision 1000.2  2004/04/16 16:53:42  gouriano
  134.  * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.3
  135.  *
  136.  * Revision 1.3  2004/04/16 14:27:17  dicuccio
  137.  * Added doxygen module tag
  138.  *
  139.  * Revision 1.2  2003/11/13 19:02:15  johnson
  140.  * Added templates for void function w/ one arg -- MSVC fails if CFuncPtrTmpl1
  141.  * is given a void return type.
  142.  *
  143.  * Revision 1.1  2003/09/02 19:20:29  meric
  144.  * Initial version
  145.  *
  146.  * ===========================================================================
  147.  */
  148. #endif // GUI_GUI___FUNCTION__HPP