From ed7e4fe3f0f838957c0830b8357d2252327dc938 Mon Sep 17 00:00:00 2001 From: harlekin Date: Sun, 23 Jun 2002 19:51:09 +0000 Subject: make more oo listview entries --- (limited to 'noncore/net/opietooth') diff --git a/noncore/net/opietooth/manager/btlistitem.cpp b/noncore/net/opietooth/manager/btlistitem.cpp new file mode 100644 index 0000000..4901710 --- a/dev/null +++ b/noncore/net/opietooth/manager/btlistitem.cpp @@ -0,0 +1,30 @@ + +#include "btlistitem.h" + +namespace OpieTooth { + + + BTListItem::BTListItem( QListView * parent ) : QListViewItem( parent ) { + + } + + BTListItem::BTListItem( QListViewItem * parent ) : QListViewItem( parent ) { + + } + + + // name, and then mac and then servicetype + BTListItem::BTListItem( QListView * parent, QString name , QString mac, QString type ) + : QListViewItem( parent, name, mac, type ){ + + } + + BTListItem::BTListItem( QListViewItem * parent , QString name, QString mac, QString type ) + : QListViewItem( parent, name, mac, type ){ + + } + + BTListItem::~BTListItem() { + } + +} diff --git a/noncore/net/opietooth/manager/btlistitem.h b/noncore/net/opietooth/manager/btlistitem.h new file mode 100644 index 0000000..28612b0 --- a/dev/null +++ b/noncore/net/opietooth/manager/btlistitem.h @@ -0,0 +1,24 @@ +#ifndef BTLISTITEM_H +#define BTLISTITEM_H + +#include + +namespace OpieTooth { + + class BTListItem : public QListViewItem { + Q_OBJECT + + public: + + BTListItem( QListView * parent ); + BTListItem( QListViewItem * parent ); + + // name, and then mac and then servicetype + BTListItem( QListView * , QString, QString, QString ); + BTListItem( QListViewItem * parent , QString, QString , QString ); + ~BTListItem(); + + } +} + +#endif -- cgit v0.9.0.2