mirror of
https://github.com/Valeh2012/PersonalVotingMachine
synced 2024-11-22 09:20:59 +02:00
21 lines
346 B
C++
21 lines
346 B
C++
/**
|
|
* @file VoteModel.cpp
|
|
* @brief VoteModel implementation file
|
|
* */
|
|
|
|
#include "string.h";
|
|
#include "model.h"
|
|
|
|
VoteModel::VoteModel(char* ssid, char* authToken, unsigned char* voteBase64, char* choices){
|
|
|
|
this->ssid = ssid;
|
|
this->authToken = authToken;
|
|
this->choices = choices;
|
|
this->voteBase64 = voteBase64;
|
|
this->voteID = NULL;
|
|
}
|
|
|
|
|
|
|
|
|