~ubuntu-branches/ubuntu/trusty/plee-the-bear/trusty-proposed

« back to all changes in this revision

Viewing changes to bear-engine/core/src/expr/binary_boolean_expression.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Julien Jorge, Julien Jorge
  • Date: 2010-11-17 20:13:34 UTC
  • mfrom: (6.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20101117201334-o4dp7uq437to7oxb
Tags: 0.5.1-1
[ Julien Jorge ]
* New upstream release (Closes: #565062, #546514).
* Add armhf architecture (Closes: #604689).
* Remove patches integrated upstream: rpath-editors.diff, rpath-game.diff,
  editors-menu-section.diff.
* Bump the Standard-Version, no changes.
* Update my email address.
* Set build dependency of libclaw to 1.6.0.
* Add the missing ${misc:Depends} in debian/control.
* List gettext translations in bear-factory.install and plee-the-bear.install.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
  Bear Engine
 
3
 
 
4
  Copyright (C) 2005-2010 Julien Jorge, Sebastien Angibaud
 
5
 
 
6
  This program is free software; you can redistribute it and/or modify it
 
7
  under the terms of the GNU General Public License as published by the
 
8
  Free Software Foundation; either version 2 of the License, or (at your
 
9
  option) any later version.
 
10
 
 
11
  This program is distributed in the hope that it will be useful, but WITHOUT
 
12
  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 
13
  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 
14
  more details.
 
15
 
 
16
  You should have received a copy of the GNU General Public License along
 
17
  with this program; if not, write to the Free Software Foundation, Inc.,
 
18
  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
19
 
 
20
  contact: plee-the-bear@gamned.org
 
21
 
 
22
  Please add the tag [Bear] in the subject of your mails.
 
23
*/
 
24
/**
 
25
 * \file binary_boolean_expression.hpp
 
26
 * \brief A logical and of two boolean expressions.
 
27
 * \author Julien Jorge
 
28
 */
 
29
#ifndef __EXPR_BINARY_BOOLEAN_EXPRESSION_HPP__
 
30
#define __EXPR_BINARY_BOOLEAN_EXPRESSION_HPP__
 
31
 
 
32
#include "expr/base_boolean_expression.hpp"
 
33
#include "expr/boolean_expression.hpp"
 
34
 
 
35
#include <functional>
 
36
 
 
37
namespace bear
 
38
{
 
39
  namespace expr
 
40
  {
 
41
    /**
 
42
     * \brief A boolean expression with two operands.
 
43
     * \author Julien Jorge
 
44
     */
 
45
    template<typename F>
 
46
    class EXPR_EXPORT binary_boolean_expression:
 
47
      public base_boolean_expression
 
48
    {
 
49
    public:
 
50
      /** \brief The type of the operands. */
 
51
      typedef boolean_expression operand_type;
 
52
 
 
53
    public:
 
54
      binary_boolean_expression();
 
55
      binary_boolean_expression(const binary_boolean_expression<F>& that);
 
56
      binary_boolean_expression
 
57
      ( const boolean_expression& left, const boolean_expression& right );
 
58
 
 
59
      const boolean_expression& get_left_operand() const;
 
60
      void set_left_operand( const boolean_expression& op );
 
61
 
 
62
      const boolean_expression& get_right_operand() const;
 
63
      void set_right_operand( const boolean_expression& op );
 
64
 
 
65
      base_boolean_expression* clone() const;
 
66
      bool evaluate() const;
 
67
 
 
68
    private:
 
69
      /** \brief The left operand. */
 
70
      boolean_expression m_left;
 
71
 
 
72
      /** \brief The right operand. */
 
73
      boolean_expression m_right;
 
74
 
 
75
    }; // class binary_boolean_expression
 
76
 
 
77
    typedef binary_boolean_expression< std::equal_to<bool> > boolean_equality;
 
78
    typedef
 
79
    binary_boolean_expression< std::not_equal_to<bool> > boolean_disequality;
 
80
    typedef binary_boolean_expression< std::logical_and<bool> > logical_and;
 
81
    typedef binary_boolean_expression< std::logical_or<bool> > logical_or;
 
82
 
 
83
  } // namespace expr
 
84
} // namespace bear
 
85
 
 
86
#include "expr/impl/binary_boolean_expression.tpp"
 
87
 
 
88
#endif // __EXPR_BINARY_BOOLEAN_EXPRESSION_HPP__