~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to source/gameengine/GameLogic/SCA_ExpressionController.h

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2012-07-23 08:54:18 UTC
  • mfrom: (14.2.16 sid)
  • mto: (14.2.19 sid)
  • mto: This revision was merged to the branch mainline in revision 42.
  • Revision ID: package-import@ubuntu.com-20120723085418-9foz30v6afaf5ffs
Tags: 2.63a-2
* debian/: Cycles support added (Closes: #658075)
  For now, this top feature has been enabled only
  on [any-amd64 any-i386] architectures because
  of OpenImageIO failing on all others
* debian/: scripts installation path changed
  from /usr/lib to /usr/share:
  + debian/patches/: patchset re-worked for path changing
  + debian/control: "Breaks" field added on yafaray-exporter

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/**
 
1
/*
2
2
 * KX_EXPRESSIONController.h
3
3
 *
4
 
 * $Id: SCA_ExpressionController.h 29259 2010-06-06 01:15:44Z campbellbarton $
5
4
 *
6
5
 * ***** BEGIN GPL LICENSE BLOCK *****
7
6
 *
29
28
 * ***** END GPL LICENSE BLOCK *****
30
29
 */
31
30
 
32
 
#ifndef __KX_EXPRESSIONCONTROLLER
33
 
#define __KX_EXPRESSIONCONTROLLER
 
31
/** \file SCA_ExpressionController.h
 
32
 *  \ingroup gamelogic
 
33
 */
 
34
 
 
35
#ifndef __SCA_EXPRESSIONCONTROLLER_H__
 
36
#define __SCA_EXPRESSIONCONTROLLER_H__
34
37
 
35
38
#include "SCA_IController.h"
36
39
 
37
40
class SCA_ExpressionController : public SCA_IController
38
41
{
39
 
//      Py_Header;
 
42
//      Py_Header
40
43
        STR_String                      m_exprText;
41
44
        CExpression*            m_exprCache;
42
45
 
62
65
#endif
63
66
};
64
67
 
65
 
#endif //__KX_EXPRESSIONCONTROLLER
 
68
#endif //__SCA_EXPRESSIONCONTROLLER_H__
66
69