summaryrefslogtreecommitdiffstats
path: root/kjsembed/bindings/bindingobject.cpp
blob: 2c280e5cf443ac8e402c2151704d873ff827976b (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( TQObject *parent, const char *name )
    : TQObject( parent, name )
{
}

BindingObject::~BindingObject()
{
}

}
}