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

14 lines
266 B
C++

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