Faker C++
Loading...
Searching...
No Matches
movie.h
Go to the documentation of this file.
1#pragma once
2
3#include <string_view>
4
5#include "faker-cxx/export.h"
6
7namespace faker::movie
8{
18FAKER_CXX_EXPORT std::string_view genre();
19
29FAKER_CXX_EXPORT std::string_view movieTitle();
30
40FAKER_CXX_EXPORT std::string_view tvShow();
41
51FAKER_CXX_EXPORT std::string_view director();
52
62FAKER_CXX_EXPORT std::string_view actor();
63
73FAKER_CXX_EXPORT std::string_view actress();
74}
Definition movie.h:8
FAKER_CXX_EXPORT std::string_view actor()
Returns a random actor name.
FAKER_CXX_EXPORT std::string_view movieTitle()
Returns a random movie title.
FAKER_CXX_EXPORT std::string_view genre()
Returns a random movie genre.
FAKER_CXX_EXPORT std::string_view actress()
Returns a random actress name.
FAKER_CXX_EXPORT std::string_view tvShow()
Returns a random tv show.
FAKER_CXX_EXPORT std::string_view director()
Returns a random movie director name.