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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: igraph_utils.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:48:15  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.13
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_GRAPH___IGRAPH_UTILS__HPP
  10. #define GUI_GRAPH___IGRAPH_UTILS__HPP
  11. /*  $Id: igraph_utils.hpp,v 1000.1 2004/06/01 19:48: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.  * Authors:  Andrey Yazhuk
  37.  *
  38.  * File Description:
  39.  *
  40.  */
  41. #include <corelib/ncbistl.hpp>
  42. #include <corelib/ncbistd.hpp>
  43. #include <set>
  44. #include <algorithm>
  45. #include <gui/opengl/glcolor.hpp>
  46. /** @addtogroup GUI_GRAPH
  47.  *
  48.  * @{
  49.  */
  50. BEGIN_NCBI_SCOPE
  51. template<class P> void  destroy(P pT)  { delete  pT; }
  52. template<class P> void  destroy_null(P& pT)  {   delete  pT;  pT = NULL; }
  53. template<class P> void  destroy_null_array(P& pT)  {   delete[]  pT;  pT = NULL; }
  54. template<class P> struct Destroyer
  55. {
  56.     static void  destroy(P pT)  { delete  pT; };
  57.     static void  destroy_null(P& pT)  {   delete  pT;  pT = NULL; };    
  58. };
  59. template<class ContT>  void  destroy_and_erase_elems(ContT& C) 
  60. {
  61.     typedef typename ContT::value_type value_type;
  62.     for_each(C.begin(), C.end(), Destroyer<value_type>::destroy);
  63.     C.clear();
  64. }
  65. template<class InIt>  void  destroy_elems(InIt first, InIt last)
  66. {
  67.     typedef typename InIt::value_type value_type;
  68.     for_each(first, last, Destroyer<value_type>::destroy);
  69. }
  70. template<class T> bool  set_contains(const set<T>& Set, const T& Elem) 
  71.     return Set.find(Elem)!=Set.end();
  72. }
  73. END_NCBI_SCOPE
  74. /*
  75.  * ===========================================================================
  76.  * $Log: igraph_utils.hpp,v $
  77.  * Revision 1000.1  2004/06/01 19:48:15  gouriano
  78.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.13
  79.  *
  80.  * Revision 1.13  2004/05/11 18:54:43  dicuccio
  81.  * Added doxygen modules info
  82.  *
  83.  * Revision 1.12  2003/10/29 23:09:36  yazhuk
  84.  * Moved glColorC() to glbitmapfont.hpp
  85.  *
  86.  * Revision 1.11  2003/10/08 14:11:30  dicuccio
  87.  * Code clean-up.  Use <> instead of "" for #includes.  Moved CGlPane into opengl.
  88.  * Moved CGlPoint and CGlRect into opengl.
  89.  *
  90.  * Revision 1.10  2003/09/25 20:33:29  yazhuk
  91.  * Added CGlRect::CenterPoint() function
  92.  *
  93.  * Revision 1.9  2003/09/10 21:51:24  yazhuk
  94.  * GCC compilation fixes
  95.  *
  96.  * Revision 1.8  2003/09/10 20:34:23  yazhuk
  97.  * Added CGlRect<>::SetSize function
  98.  *
  99.  * Revision 1.7  2003/08/28 19:17:01  yazhuk
  100.  * Cosmetic changes to function names
  101.  *
  102.  * Revision 1.6  2003/08/14 18:01:16  yazhuk
  103.  * Added Move... functions
  104.  *
  105.  * Revision 1.5  2003/08/11 16:08:26  yazhuk
  106.  * Compilation fixes for GCC.
  107.  *
  108.  * Revision 1.4  2003/08/11 13:16:56  dicuccio
  109.  * Restore missing ';' after class declaration
  110.  *
  111.  * Revision 1.3  2003/08/11 11:37:56  dicuccio
  112.  * Compilation fixes for WorkShop compiler
  113.  *
  114.  * Revision 1.2  2003/08/10 14:11:18  dicuccio
  115.  * Compilation fixes for gcc
  116.  *
  117.  * Revision 1.1  2003/08/08 16:01:35  yazhuk
  118.  * Initial revision.
  119.  *
  120.  * ===========================================================================
  121.  */
  122. #endif