00001 #ifndef BLUETOOTHRFCOMM_NETNODE_H 00002 #define BLUETOOTHRFCOMM_NETNODE_H 00003 00004 #include "netnode.h" 00005 00006 class BluetoothRFCOMMNetNode : public ANetNode { 00007 00008 Q_OBJECT 00009 00010 public: 00011 00012 BluetoothRFCOMMNetNode(); 00013 virtual ~BluetoothRFCOMMNetNode(); 00014 00015 virtual const QString pixmapName() 00016 { return "Devices/bluetooth"; } 00017 00018 virtual const QString nodeDescription() ; 00019 virtual ANetNodeInstance * createInstance( void ); 00020 virtual const char ** needs( void ); 00021 virtual const char ** provides( void ); 00022 00023 private: 00024 00025 virtual void setSpecificAttribute( QString & Attr, QString & Value ); 00026 virtual void saveSpecificAttribute( QTextStream & TS ); 00027 }; 00028 00029 #endif
1.4.2