summaryrefslogtreecommitdiffstats
path: root/kjsembed/bindings/bindingobject.cpp
blob: c8b2bd1ad4bca2c1060c99d5a0d66871b8e32f9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "bindingobject.h"
#ifndef QT_ONLY
#include "bindingobject.moc"
#endif
namespace KJSEmbed {
namespace Bindings {

BindingObject::BindingObject( TTQObject *parent, const char *name )
    : TTQObject( parent, name )
{
}

BindingObject::~BindingObject()
{
}

}
}