VcsBase: Turn State into a class

Change-Id: I1e0a9e6f4468ad29b70dc1fd78310ccb6a2133f3
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Tobias Hunger
2015-09-16 14:54:58 +02:00
committed by Orgad Shaneh
parent 41feefd670
commit 628a0fcaa7
2 changed files with 3 additions and 2 deletions

View File

@@ -91,8 +91,9 @@ namespace Internal {
Aggregated in the QSharedData of VcsBase::VcsBasePluginState. Aggregated in the QSharedData of VcsBase::VcsBasePluginState.
*/ */
struct State class State
{ {
public:
void clearFile(); void clearFile();
void clearPatchFile(); void clearPatchFile();
void clearProject(); void clearProject();

View File

@@ -59,7 +59,7 @@ class IDocument;
namespace VcsBase { namespace VcsBase {
namespace Internal { struct State; } namespace Internal { class State; }
class VcsBaseSubmitEditor; class VcsBaseSubmitEditor;
class VcsBasePluginPrivate; class VcsBasePluginPrivate;