Faker C++
Loading...
Searching...
No Matches
sport.h
Go to the documentation of this file.
1#pragma once
2
3#include <string_view>
4
5#include "faker-cxx/export.h"
6#include "faker-cxx/types/locale.h"
7
8namespace faker::sport
9{
20FAKER_CXX_EXPORT std::string_view sportName(Locale locale = Locale::en_US);
21
32FAKER_CXX_EXPORT std::string_view soccerTeam(Locale locale = Locale::en_US);
33
44FAKER_CXX_EXPORT std::string_view maleAthlete(Locale locale = Locale::en_US);
45
56FAKER_CXX_EXPORT std::string_view femaleAthlete(Locale locale = Locale::en_US);
57
68FAKER_CXX_EXPORT std::string_view sportEvent(Locale locale = Locale::en_US);
69}
Definition sport.h:9
FAKER_CXX_EXPORT std::string_view sportEvent(Locale locale=Locale::en_US)
Returns a random Sport Event.
FAKER_CXX_EXPORT std::string_view femaleAthlete(Locale locale=Locale::en_US)
Returns a random female athlete.
FAKER_CXX_EXPORT std::string_view sportName(Locale locale=Locale::en_US)
Returns a random sport.
FAKER_CXX_EXPORT std::string_view soccerTeam(Locale locale=Locale::en_US)
Returns a random soccer team.
FAKER_CXX_EXPORT std::string_view maleAthlete(Locale locale=Locale::en_US)
Returns a random male athlete.