kDB: Knowledge DataBase
Loading...
Searching...
No Matches
AbstractMergeStrategy_p.h
1#include "AbstractMergeStrategy.h"
2
3#include "Revision.h"
4
5#include <knowCore/Timestamp.h>
6#include <QUuid>
7
8#include <Cyqlops/Crypto/RSAAlgorithm.h>
9
10namespace kDB::Repository::VersionControl
11{
13 {
15 {
16 QList<Revision> revisions;
17 QByteArray diff;
18 bool hasChanges;
19 };
20 QList<BranchInfo> branchInfos;
21 bool allHaveChanges;
22
23 virtual ~Private() {}
24 virtual bool merge() = 0;
25 };
26}
Definition Revision.h:9