-rw-r--r-- | libkdepim/ksyncprofile.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libkdepim/ksyncprofile.h b/libkdepim/ksyncprofile.h index 80094b1..300f70f 100644 --- a/libkdepim/ksyncprofile.h +++ b/libkdepim/ksyncprofile.h @@ -75,2 +75,8 @@ class KSyncProfile : public QObject { + void setPhoneDevice( const QString& n ) { mPhoneDevice = n;} + QString getPhoneDevice( ) { return mPhoneDevice;} + void setPhoneConnection( const QString& n ) { mPhoneConnection = n;} + QString getPhoneConnection( ) { return mPhoneConnection;} + void setPhoneModel( const QString& n ) { mPhoneModel = n;} + QString getPhoneModel( ) { return mPhoneModel;} /* @@ -100,2 +106,4 @@ class KSyncProfile : public QObject { bool getIsLocalFileSync( ) { return mIsLocalFileSync;} + void setIsPhoneSync( bool b ) { mIsPhoneSync= b;} + bool getIsPhoneSync( ) { return mIsPhoneSync;} @@ -111,2 +119,7 @@ class KSyncProfile : public QObject { QString mRemoteFileNameAB; + + QString mPhoneDevice; + QString mPhoneConnection; + QString mPhoneModel; + bool mIncludeInRingSync; @@ -121,2 +134,3 @@ class KSyncProfile : public QObject { bool mIsLocalFileSync; + bool mIsPhoneSync; }; |