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
5
class
RepresentativeData
{
6
public
:
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
RepresentativeData::housenumber
std::string housenumber
Definition
representative_data.h:16
RepresentativeData::city
std::string city
Definition
representative_data.h:18
RepresentativeData::RepresentativeData
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
RepresentativeData::name
std::string name
Definition
representative_data.h:14
RepresentativeData::street
std::string street
Definition
representative_data.h:15
RepresentativeData::zipcode
std::string zipcode
Definition
representative_data.h:17
data_objects
representative_data.h
Generated on Sun Mar 30 2025 17:46:37 for Invoice++ by
1.13.2