class port { public: port( const QString &portnum ) { p=portnum; } QString portnum() const { return p; } private: QString p; };