mirror of
https://github.com/Valeh2012/PersonalVotingMachine
synced 2024-11-25 18:31:00 +02:00
20 lines
420 B
C++
20 lines
420 B
C++
/**
|
|
* @file ZipModel.cpp
|
|
* @brief ZipModel implementation file
|
|
* */
|
|
|
|
#include "string.h"
|
|
#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;
|
|
}
|