~ubuntu-branches/ubuntu/precise/kalgebra/precise-updates

« back to all changes in this revision

Viewing changes to analitza/builtinmethods.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-16 16:41:53 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20111216164153-ym1s7jhbqwn2ndz6
Tags: 4:4.7.90-0ubuntu2
PPA rebuild, no changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*************************************************************************************
2
 
 *  Copyright (C) 2010 by Aleix Pol <aleixpol@kde.org>                               *
3
 
 *                                                                                   *
4
 
 *  This program is free software; you can redistribute it and/or                    *
5
 
 *  modify it under the terms of the GNU General Public License                      *
6
 
 *  as published by the Free Software Foundation; either version 2                   *
7
 
 *  of the License, or (at your option) any later version.                           *
8
 
 *                                                                                   *
9
 
 *  This program is distributed in the hope that it will be useful,                  *
10
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of                   *
11
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                    *
12
 
 *  GNU General Public License for more details.                                     *
13
 
 *                                                                                   *
14
 
 *  You should have received a copy of the GNU General Public License                *
15
 
 *  along with this program; if not, write to the Free Software                      *
16
 
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA   *
17
 
 *************************************************************************************/
18
 
 
19
 
#include "builtinmethods.h"
20
 
#include "expression.h"
21
 
 
22
 
using namespace Analitza;
23
 
 
24
 
PointerFunctionDefinition::PointerFunctionDefinition(func call)
25
 
        : m_function(call)
26
 
{}
27
 
 
28
 
Expression PointerFunctionDefinition::operator()(const QList< Expression >& args)
29
 
{
30
 
        return m_function(args);
31
 
}
32
 
 
33
 
BuiltinMethods::~BuiltinMethods()
34
 
{
35
 
        qDeleteAll(m_functions);
36
 
}
37
 
 
38
 
void BuiltinMethods::insertFunction(const QString& id, const ExpressionType& type, FunctionDefinition* f)
39
 
{
40
 
        if(m_types.contains(id))
41
 
                qDebug() << "Replacing a builtin function called: " << id;
42
 
        
43
 
        m_types.insert(id, type);
44
 
        m_functions.insert(id, f);
45
 
}