mirror of
https://github.com/Valeh2012/PersonalVotingMachine
synced 2024-11-22 17:30:59 +02:00
14 lines
266 B
C++
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;
|
|
}
|