/ src / DatabaseObject.cpp
DatabaseObject.cpp
 1  /**
 2   * @file DatabaseObject.cpp
 3   * @author Rene Ceska xceska06 (xceska06@stud.fit.vutbr.cz)
 4   * @date 2023-11-19
 5   */
 6  #include "inc/DatabaseObject.h"
 7  
 8  std::vector<unsigned char> DatabaseObject::get_name() { return this->name; }
 9  std::vector<unsigned char> DatabaseObject::get_uid() { return this->uid; }
10  std::vector<unsigned char> DatabaseObject::get_email() { return this->email; }
11  DatabaseObject::DatabaseObject(std::vector<unsigned char> name,
12                                   std::vector<unsigned char> uid,
13                                   std::vector<unsigned char> email) {
14    this->name = name;
15    this->uid = uid;
16    this->email = email;
17  }
18  
19  
20  
21  
22  
23