~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to source/gameengine/Expressions/EXP_C-Api.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Kevin Roy
  • Date: 2011-02-08 22:20:54 UTC
  • mfrom: (1.4.2 upstream)
  • mto: (14.2.6 sid) (1.5.1)
  • mto: This revision was merged to the branch mainline in revision 27.
  • Revision ID: james.westby@ubuntu.com-20110208222054-kk0gwa4bu8h5lyq4
Tags: upstream-2.56.1-beta-svn34076
ImportĀ upstreamĀ versionĀ 2.56.1-beta-svn34076

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**
2
 
 * $Id: EXP_C-Api.cpp 15444 2008-07-05 17:05:05Z lukep $
 
2
 * $Id: EXP_C-Api.cpp 28254 2010-04-18 10:28:37Z campbellbarton $
3
3
 *
4
4
 * ***** BEGIN GPL LICENSE BLOCK *****
5
5
 *
15
15
 *
16
16
 * You should have received a copy of the GNU General Public License
17
17
 * along with this program; if not, write to the Free Software Foundation,
18
 
 * Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
18
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19
19
 *
20
20
 * The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
21
21
 * All rights reserved.
33
33
#include "ErrorValue.h"
34
34
#include "InputParser.h"
35
35
 
36
 
#ifdef HAVE_CONFIG_H
37
 
#include <config.h>
38
 
#endif
39
 
 
40
36
EXP_ValueHandle EXP_CreateInt(int innie)
41
37
{
42
38
        return (EXP_ValueHandle) new CIntValue(innie);