Faker C++
Loading...
Searching...
No Matches
company.h
Go to the documentation of this file.
1#pragma once
2
3#include <optional>
4#include <string>
5#include <string_view>
6
7#include "faker-cxx/export.h"
8
10{
17
30FAKER_CXX_EXPORT std::string companyName(std::optional<CompanyNameFormat> format = std::nullopt);
31
41FAKER_CXX_EXPORT std::string_view type();
42
52FAKER_CXX_EXPORT std::string_view industry();
53
63FAKER_CXX_EXPORT std::string buzzPhrase();
64
74FAKER_CXX_EXPORT std::string_view buzzAdjective();
75
85FAKER_CXX_EXPORT std::string_view buzzNoun();
86
96FAKER_CXX_EXPORT std::string_view buzzVerb();
97
107FAKER_CXX_EXPORT std::string catchPhrase();
108
118FAKER_CXX_EXPORT std::string_view catchPhraseAdjective();
119
129FAKER_CXX_EXPORT std::string_view catchPhraseDescriptor();
130
140FAKER_CXX_EXPORT std::string_view catchPhraseNoun();
141
142}
Definition company.h:10
FAKER_CXX_EXPORT std::string_view catchPhraseNoun()
Returns a random catch phrase noun.
FAKER_CXX_EXPORT std::string_view buzzAdjective()
Returns a random buzz adjective.
FAKER_CXX_EXPORT std::string catchPhrase()
Returns a random catch phrase.
FAKER_CXX_EXPORT std::string_view buzzNoun()
Returns a random buzz noun.
FAKER_CXX_EXPORT std::string buzzPhrase()
Returns a random buzz phrase.
FAKER_CXX_EXPORT std::string_view catchPhraseDescriptor()
Returns a random catch phrase descriptor.
CompanyNameFormat
Definition company.h:12
FAKER_CXX_EXPORT std::string_view type()
Returns a random company type.
FAKER_CXX_EXPORT std::string companyName(std::optional< CompanyNameFormat > format=std::nullopt)
Returns a random company name.
FAKER_CXX_EXPORT std::string_view catchPhraseAdjective()
Returns a random catch phrase adjective.
FAKER_CXX_EXPORT std::string_view buzzVerb()
Returns a random buzz verb.
FAKER_CXX_EXPORT std::string_view industry()
Returns a random company industry.