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

lor_basic.hh

00001 // Copyright (C) 2007, 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_ACCU_LOGIC_LOR_BASIC_HH
00027 # define MLN_ACCU_LOGIC_LOR_BASIC_HH
00028 
00034 
00035 # include <mln/core/concept/meta_accumulator.hh>
00036 # include <mln/accu/internal/base.hh>
00037 
00038 
00039 namespace mln
00040 {
00041 
00042   // Forward declaration.
00043   namespace accu {
00044     namespace logic {
00045       struct lor_basic;
00046     }
00047   }
00048 
00049 
00050   // Traits.
00051 
00052   namespace trait
00053   {
00054 
00055     template <>
00056     struct accumulator_< accu::logic::lor_basic >
00057     {
00058       typedef accumulator::has_untake::no    has_untake;
00059       typedef accumulator::has_set_value::no has_set_value;
00060       typedef accumulator::has_stop::yes     has_stop;
00061       typedef accumulator::when_pix::use_v   when_pix;
00062     };
00063 
00064   } // end of namespace mln::trait
00065 
00066 
00067   namespace accu
00068   {
00069 
00070     namespace meta
00071     {
00072 
00073       namespace logic
00074       {
00076         struct lor_basic : public Meta_Accumulator< lor_basic >
00077         {
00078           template <typename T>
00079           struct with
00080           {
00081             typedef accu::logic::lor_basic ret;
00082           };
00083         };
00084 
00085       } // end of namespace mln::accu::meta::logic
00086     } // end of namespace mln::accu::meta
00087 
00088 
00089     namespace logic
00090     {
00091 
00097       //
00098       struct lor_basic : public mln::accu::internal::base< bool, lor_basic >
00099       {
00100         typedef bool argument;
00101 
00102         lor_basic();
00103 
00106         void init();
00107         void take_as_init_(const argument& t);
00108 
00109         void take(const argument& t);
00110         void take(const lor_basic& other);
00112 
00114         bool to_result() const;
00115 
00118         bool is_valid() const;
00119 
00123         bool can_stop() const;
00124 
00125       protected:
00126         bool res_;
00127       };
00128 
00129 # ifndef MLN_INCLUDE_ONLY
00130 
00131       inline
00132       lor_basic::lor_basic()
00133       {
00134         init();
00135       }
00136 
00137       inline
00138       void
00139       lor_basic::init()
00140       {
00141         res_ = false;
00142       }
00143 
00144       inline
00145       void lor_basic::take_as_init_(const argument& t)
00146       {
00147         res_ = t;
00148       }
00149 
00150       inline
00151       void lor_basic::take(const argument& t)
00152       {
00153         if (res_ == false && t == true)
00154           res_ = true;
00155       }
00156 
00157       inline
00158       void
00159       lor_basic::take(const lor_basic& other)
00160       {
00161         res_ = res_ || other.res_;
00162       }
00163 
00164       inline
00165       bool
00166       lor_basic::to_result() const
00167       {
00168         return res_;
00169       }
00170 
00171       inline
00172       bool
00173       lor_basic::is_valid() const
00174       {
00175         return true;
00176       }
00177 
00178       inline
00179       bool
00180       lor_basic::can_stop() const
00181       {
00182         return res_ == true;
00183       }
00184 
00185 # endif // ! MLN_INCLUDE_ONLY
00186 
00187     } // end of namespace mln::accu::logic
00188   } // end of namespace mln::accu
00189 } // end of namespace mln
00190 
00191 
00192 #endif // ! MLN_ACCU_LOGIC_LOR_BASIC_HH

Generated on Tue Oct 4 2011 15:24:03 for Milena (Olena) by  doxygen 1.7.1