mirror of
https://github.com/Valeh2012/PersonalVotingMachine
synced 2024-11-22 17:30:59 +02:00
17 lines
321 B
C++
17 lines
321 B
C++
/**
|
|
* @file ChoiceModel.cpp
|
|
* @brief ChoiceModel implementation file
|
|
* */
|
|
|
|
#include <vector>
|
|
#include "model.h"
|
|
|
|
ChoiceModel::ChoiceModel(char* ssid, char * authToken){
|
|
|
|
this->ssid = ssid;
|
|
this->authToken = authToken;
|
|
this->choices = NULL;
|
|
this->choice_list = new std::vector<choice_t>();
|
|
this->ballot = NULL;
|
|
}
|