Collections::Collections(QObject *parent):
    QObject(parent),
    mCollModel(new CollectionModel(this, this)),
    mCollIntf(0),
    mSupportsCollections(false)
{
    //Register libsocialweb-qt DBus data types...
    registerDataTypes();
}
示例#2
0
文件: wntrdata.cpp 项目: boradin/data
 System::System() : m_dir(WNTRDATA_DATA_DIR) {
     connect(this,SIGNAL(started()),this,SLOT(registerDataTypes()));
 }