36 #include <kdemacros.h> 40 class KDE_EXPORT KAccount 53 KAccount( const uint id = 0, const TQString &name = TQString(), 54 const Type type = Other ); 59 TQString name() const { return mName; } 60 void setName( const TQString& name ) { mName = name; } 65 uint id() const { return mId; } 66 void setId( const uint id ) { mId = id; } 71 Type type() const { return mType; } 72 void setType( const Type type ) { mType = type; } 78 void writeConfig( TDEConfig &config, const TQString &group = TQString() ); 84 void readConfig( TDEConfig &config, const TQString &group = TQString() );
|