~ubuntu-branches/ubuntu/natty/plee-the-bear/natty

« back to all changes in this revision

Viewing changes to bear-engine/core/src/engine/item_brick/with_boolean_expression_assignment.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 with_boolean_expression_assignment.hpp
 
26
 * \brief An utility class to serve as a base class for items that can
 
27
 *        receive boolean expressions.
 
28
 * \author Julien Jorge
 
29
 */
 
30
#ifndef __ENGINE_WITH_BOOLEAN_EXPRESSION_ASSIGNMENT_HPP__
 
31
#define __ENGINE_WITH_BOOLEAN_EXPRESSION_ASSIGNMENT_HPP__
 
32
 
 
33
#include "expr/boolean_expression.hpp"
 
34
 
 
35
#include "engine/class_export.hpp"
 
36
 
 
37
namespace bear
 
38
{
 
39
  namespace engine
 
40
  {
 
41
    /**
 
42
     * \brief An utility class to serve as a base class for items that can
 
43
     *        receive boolean expressions.
 
44
     *
 
45
     * \author Julien Jorge
 
46
     */
 
47
    class ENGINE_EXPORT with_boolean_expression_assignment
 
48
    {
 
49
    public:
 
50
      /** \brief The type of the expression created. */
 
51
      typedef expr::boolean_expression expression_type;
 
52
 
 
53
    public:
 
54
      virtual ~with_boolean_expression_assignment();
 
55
 
 
56
      void set_expression( const expr::boolean_expression& e );
 
57
 
 
58
    private:
 
59
      virtual void do_set_expression( const expr::boolean_expression& e ) = 0;
 
60
 
 
61
    }; // class with_boolean_expression_assignment
 
62
 
 
63
  } // namespace engine
 
64
} // namespace bear
 
65
 
 
66
#endif // __ENGINE_WITH_BOOLEAN_EXPRESSION_ASSIGNMENT_HPP__