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

14 lines
237 B
C++

/**
* @file QRModel.cpp
* @brief QRModel implementation file
* */
#include "model.h"
QRModel::QRModel(char* ssid, char* voteID, unsigned char* rndBase64){
this->ssid = ssid;
this->voteID = voteID;
this->rndBase64 = rndBase64;
}