00001 #ifndef BTLISTITEM_H 00002 #define BTLISTITEM_H 00003 00004 #include <qlistview.h> 00005 00006 namespace OpieTooth { 00007 00008 class BTListItem : public QListViewItem { 00009 public: 00010 enum Types { Device =0, Service, Connection }; 00011 BTListItem( QListView * parent ); 00012 BTListItem( QListViewItem * parent ); 00013 virtual QString type() const = 0; 00014 virtual int typeId() const = 0; 00015 }; 00016 }; 00017 00018 #endif
1.4.2