• Main Page
  • Related Pages
  • Modules
  • Namespaces
  • Classes
  • Files
  • File List

window_base.hh

00001 // Copyright (C) 2008, 2009 EPITA Research and Development Laboratory (LRDE)
00002 //
00003 // This file is part of Olena.
00004 //
00005 // Olena is free software: you can redistribute it and/or modify it under
00006 // the terms of the GNU General Public License as published by the Free
00007 // Software Foundation, version 2 of the License.
00008 //
00009 // Olena is distributed in the hope that it will be useful,
00010 // but WITHOUT ANY WARRANTY; without even the implied warranty of
00011 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00012 // General Public License for more details.
00013 //
00014 // You should have received a copy of the GNU General Public License
00015 // along with Olena.  If not, see <http://www.gnu.org/licenses/>.
00016 //
00017 // As a special exception, you may use this file as part of a free
00018 // software project without restriction.  Specifically, if other files
00019 // instantiate templates or use macros or inline functions from this
00020 // file, or you compile this file and link it with other files to produce
00021 // an executable, this file does not by itself cause the resulting
00022 // executable to be covered by the GNU General Public License.  This
00023 // exception does not however invalidate any other reasons why the
00024 // executable file might be covered by the GNU General Public License.
00025 
00026 #ifndef MLN_CORE_INTERNAL_WINDOW_BASE_HH
00027 # define MLN_CORE_INTERNAL_WINDOW_BASE_HH
00028 
00032 
00033 # include <mln/core/concept/window.hh>
00034 
00035 
00036 namespace mln
00037 {
00038 
00039   namespace internal
00040   {
00041 
00042 
00047     template <typename D, typename E>
00048     struct window_base : public Window<E>
00049     {
00050 
00052       typedef D dpsite;
00053 
00055       typedef mln_psite(D) psite;
00056 
00058       typedef mln_site(D) site;
00059 
00061       // This method is used in the neighborhood window-adapter.
00062       bool is_neighbable_() const;
00063 
00065       bool is_valid() const;
00066 
00067     protected:
00068       window_base();
00069     };
00070 
00071 
00072 # ifndef MLN_INCLUDE_ONLY
00073 
00074     template <typename D, typename E>
00075     inline
00076     window_base<D,E>::window_base()
00077     {
00078     }
00079 
00080     template <typename D, typename E>
00081     inline
00082     bool
00083     window_base<D,E>::is_valid() const
00084     {
00085       return true;
00086     }
00087 
00088     template <typename D, typename E>
00089     inline
00090     bool
00091     window_base<D,E>::is_neighbable_() const
00092     {
00093       return exact(this)->is_symmetric() && ! exact(this)->is_centered();
00094     }
00095 
00096 # endif // ! MLN_INCLUDE_ONLY
00097 
00098   } // end of namespace mln::internal
00099 
00100 } // end of namespace mln
00101 
00102 
00103 #endif // ! MLN_CORE_INTERNAL_WINDOW_BASE_HH

Generated on Thu Sep 8 2011 18:33:04 for Milena (Olena) by  doxygen 1.7.1