diff options
author | Tobias Hunger <[email protected]> | 2015-03-26 12:18:09 +0100 |
---|---|---|
committer | Tobias Hunger <[email protected]> | 2015-03-26 14:22:12 +0000 |
commit | 514dc73e60f2baf34d784857b5b9b9190d7ebed1 (patch) | |
tree | de538c9117d02ad4ec4eca2c0a8d8e5928499994 /src/plugins/git/gitclient.h | |
parent | 66b94f490fa2a3bc009c2be0fd4a8c14916956c8 (diff) |
Vcs: Introduce VcsBaseClientImpl
Introduce VcsBaseClientImpl class that is a base for both GitClient
and VcsBaseClient.
The idea is to slowly move code from VcsBaseClient into VcsBaseClientImpl
and reuse that in GitClient. Ideally GitClient would become a full
VcsBaseClient at some point, but let's see how far we can get with this
conversion process:-)
Change-Id: I2e63ba0dcf8a61128d5abf7c1453625e1b9f4e7e
Reviewed-by: Orgad Shaneh <[email protected]>
Diffstat (limited to 'src/plugins/git/gitclient.h')
-rw-r--r-- | src/plugins/git/gitclient.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/git/gitclient.h b/src/plugins/git/gitclient.h index 8ca0e276a4a..e7e67a5af79 100644 --- a/src/plugins/git/gitclient.h +++ b/src/plugins/git/gitclient.h @@ -35,6 +35,7 @@ #include "commitdata.h" #include <coreplugin/editormanager/ieditor.h> +#include <vcsbase/vcsbaseclient.h> #include <utils/fileutils.h> @@ -101,7 +102,7 @@ public: typedef QMap<QString, SubmoduleData> SubmoduleDataMap; -class GitClient : public QObject +class GitClient : public VcsBase::VcsBaseClientImpl { Q_OBJECT |