-
-
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.
"Added Support for Czech Location Addresses."
- Loading branch information
1 parent
bee8e90
commit 1f8a6bc
Showing
6 changed files
with
8,208 additions
and
6 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,30 @@ | ||
#pragma once | ||
|
||
#include "../CountryAddresses.h" | ||
#include "CzechCities.h" | ||
#include "CzechStreetNames.h" | ||
|
||
|
||
namespace faker | ||
{ | ||
const std::string czechZipCodeFormat{"#####"}; | ||
|
||
const std::vector<std::string> czechAddressFormats{"{street} {buildingNumber}", | ||
"{street} {buildingNumber} {secondaryAddress}"}; | ||
|
||
const std::vector<std::string> czechSecondaryAddressFormats{"Apt. ###", "Suite ###"}; | ||
|
||
const std::vector<std::string> czechBuildingNumberFormats{"#", "##", "###"}; | ||
|
||
const std::vector<std::string> czechStreetFormats{"{streetName}"}; | ||
|
||
const CountryAddresses czechAddresses{czechCities, | ||
czechZipCodeFormat, | ||
czechAddressFormats, | ||
czechSecondaryAddressFormats, | ||
czechStreetFormats, | ||
{}, | ||
czechStreetNames, | ||
{}, | ||
czechBuildingNumberFormats}; | ||
} |
Oops, something went wrong.