summaryrefslogtreecommitdiffabout
path: root/libkdepim/ksyncprofile.h
Side-by-side diff
Diffstat (limited to 'libkdepim/ksyncprofile.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libkdepim/ksyncprofile.h14
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
@@ -74,4 +74,10 @@ class KSyncProfile : public QObject {
QString getRemoteFileNameAB( ) { return mRemoteFileNameAB;}
+ 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;}
/*
void set( const QString& n ) { = n;}
@@ -99,4 +105,6 @@ class KSyncProfile : public QObject {
void setIsLocalFileSync( bool b ) { mIsLocalFileSync= b;}
bool getIsLocalFileSync( ) { return mIsLocalFileSync;}
+ void setIsPhoneSync( bool b ) { mIsPhoneSync= b;}
+ bool getIsPhoneSync( ) { return mIsPhoneSync;}
private:
@@ -110,4 +118,9 @@ class KSyncProfile : public QObject {
QString mLocalTempFileAB;
QString mRemoteFileNameAB;
+
+ QString mPhoneDevice;
+ QString mPhoneConnection;
+ QString mPhoneModel;
+
bool mIncludeInRingSync;
bool mIncludeInRingSyncAB;
@@ -120,4 +133,5 @@ class KSyncProfile : public QObject {
bool mShowSummaryAfterSync;
bool mIsLocalFileSync;
+ bool mIsPhoneSync;
};