Invoice++
Loading...
Searching...
No Matches
representative_data.h
Go to the documentation of this file.
1#ifndef REPRESENTATIVE_DATA_H
2#define REPRESENTATIVE_DATA_H
3#include <string>
4
6public:
7 RepresentativeData(const std::string &name, const std::string &street, const std::string &housenumber, const std::string &zipcode, const std::string &city) {
8 this->name = name;
9 this->street = street;
10 this->housenumber = housenumber;
11 this->zipcode = zipcode;
12 this->city = city;
13 }
14 std::string name;
15 std::string street;
16 std::string housenumber;
17 std::string zipcode;
18 std::string city;
19};
20
21#endif //REPRESENTATIVE_DATA_H
std::string housenumber
Definition representative_data.h:16
std::string city
Definition representative_data.h:18
RepresentativeData(const std::string &name, const std::string &street, const std::string &housenumber, const std::string &zipcode, const std::string &city)
Definition representative_data.h:7
std::string name
Definition representative_data.h:14
std::string street
Definition representative_data.h:15
std::string zipcode
Definition representative_data.h:17