-
-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b9cfea4
commit d282f23
Showing
7 changed files
with
672 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#pragma once | ||
|
||
#include "../CountryAddresses.h" | ||
#include "UkraineCities.h" | ||
#include "UkraineStreetNames.h" | ||
#include "UkraineStreetPrefixes.h" | ||
|
||
namespace faker | ||
{ | ||
const std::string ukraineZipCodeFormat{"#####"}; | ||
|
||
const std::vector<std::string> ukraineAddressFormats{"{street} {buildingNumber}", | ||
"{street} {buildingNumber} {secondaryAddress}"}; | ||
|
||
const std::vector<std::string> ukraineSecondaryAddressFormats{"кв. ###", "кв. ##", "кв. #"}; | ||
|
||
const std::vector<std::string> ukraineBuildingNumberFormats{"#", "##", "###"}; | ||
|
||
const std::vector<std::string> ukraineStreetFormats{"{streetPrefix} {firstName}", "{streetPrefix} {lastName}", | ||
"{streetPrefix} {streetName}"}; | ||
|
||
const CountryAddresses ukraineAddresses{ukraineCities, | ||
ukraineZipCodeFormat, | ||
ukraineAddressFormats, | ||
ukraineSecondaryAddressFormats, | ||
ukraineStreetFormats, | ||
ukraineStreetPrefixes, | ||
ukraineStreetNames, | ||
{}, | ||
ukraineBuildingNumberFormats}; | ||
} |
Oops, something went wrong.