edits
[iotcloud.git] / version2 / src / C / Commit.cpp
old mode 100644 (file)
new mode 100755 (executable)
index 7665841..3078bc1
@@ -4,7 +4,7 @@
 #include "IoTString.h"
 
 Commit::Commit() :
-       parts(new Vector<CommitPart *>()),
+       parts(new MyVector<CommitPart *>()),
        partCount(0),
        missingParts(NULL),
        fldisComplete(false),
@@ -19,7 +19,7 @@ Commit::Commit() :
 }
 
 Commit::Commit(int64_t _sequenceNumber, int64_t _machineId, int64_t _transactionSequenceNumber) :
-       parts(new Vector<CommitPart *>()),
+       parts(new MyVector<CommitPart *>()),
        partCount(0),
        missingParts(NULL),
        fldisComplete(true),
@@ -112,7 +112,7 @@ int64_t Commit::getTransactionSequenceNumber() {
        return transactionSequenceNumber;
 }
 
-Vector<CommitPart *> *Commit::getParts() {
+MyVector<CommitPart *> *Commit::getParts() {
        return parts;
 }