~ubuntu-branches/ubuntu/karmic/ugene/karmic

« back to all changes in this revision

Viewing changes to src/libs_3rdparty/qtbindings_core/src/qtscriptshell_QChildEvent.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Ivan Efremov
  • Date: 2009-01-26 19:17:51 UTC
  • Revision ID: james.westby@ubuntu.com-20090126191751-9kqqevd3yf4o098r
Tags: upstream-1.3.2+repack
ImportĀ upstreamĀ versionĀ 1.3.2+repack

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*****************************************************************
 
2
* Unipro UGENE - Integrated Bioinformatics Suite
 
3
* Copyright (C) 2008 Unipro, Russia (http://ugene.unipro.ru)
 
4
* All Rights Reserved
 
5
 
6
*     This source code is distributed under the terms of the
 
7
*     GNU General Public License. See the files COPYING and LICENSE
 
8
*     for details.
 
9
*****************************************************************/
 
10
 
 
11
#include "qtscriptshell_QChildEvent.h"
 
12
 
 
13
#include <QtScript/QScriptEngine>
 
14
#include <QVariant>
 
15
#include <qobject.h>
 
16
 
 
17
#define QTSCRIPT_IS_GENERATED_FUNCTION(fun) ((fun.data().toUInt32() & 0xFFFF0000) == 0xBABE0000)
 
18
 
 
19
 
 
20
QtScriptShell_QChildEvent::QtScriptShell_QChildEvent(QEvent::Type  type, QObject*  child)
 
21
    : QChildEvent(type, child) {}
 
22
 
 
23
QtScriptShell_QChildEvent::~QtScriptShell_QChildEvent() {}
 
24