PersonalVotingMachine/extended-setup/main/impl/models/ZipModel.cpp
2020-12-22 14:30:09 +02:00

18 lines
399 B
C++

/**
* @file ZipModel.cpp
* @brief ZipModel implementation file
* */
#include "model.h"
ZipModel::ZipModel(unsigned char* ballot, char* ballotFileName, size_t ballotLength, char* Signature){
this->ballot = ballot;
this->ballotFileName = ballotFileName;
this->ballotLength = ballotLength;
this->Signature = Signature;
this->authToken = NULL;
this->ssid = NULL;
this->voteBase64 = NULL;
}