#ifndef BTLISTITEM_H #define BTLISTITEM_H #include namespace OpieTooth { class BTListItem : public QListViewItem { 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