mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 10:52:49 +00:00
56 lines
1.8 KiB
C++
56 lines
1.8 KiB
C++
/***************************************************************************
|
|
* interpreter.cpp
|
|
* This file is part of the KDE project
|
|
* copyright (C)2007-2008 by Sebastian Sauer (mail@dipe.org)
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Library General Public License for more details.
|
|
* You should have received a copy of the GNU Library General Public License
|
|
* along with this program; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
***************************************************************************/
|
|
|
|
#include "interpreter.h"
|
|
#include "script.h"
|
|
|
|
// The in krossconfig.h defined KROSS_EXPORT_INTERPRETER macro defines an
|
|
// exported C function used as factory for Kross::EcmaInterpreter instances.
|
|
KROSS_EXPORT_INTERPRETER( Kross::EcmaInterpreter )
|
|
|
|
using namespace Kross;
|
|
|
|
namespace Kross {
|
|
|
|
/// \internal private d-pointer class.
|
|
class EcmaInterpreter::Private
|
|
{
|
|
public:
|
|
};
|
|
|
|
}
|
|
|
|
EcmaInterpreter::EcmaInterpreter(Kross::InterpreterInfo* info)
|
|
: Kross::Interpreter(info)
|
|
, d(new Private())
|
|
{
|
|
//krossdebug( QString("EcmaInterpreter::EcmaInterpreter") );
|
|
}
|
|
|
|
EcmaInterpreter::~EcmaInterpreter()
|
|
{
|
|
//krossdebug( QString("EcmaInterpreter::~EcmaInterpreter") );
|
|
delete d;
|
|
}
|
|
|
|
Kross::Script* EcmaInterpreter::createScript(Kross::Action* action)
|
|
{
|
|
return new EcmaScript(this, action);
|
|
}
|
|
|