Faker C++
Loading...
Searching...
No Matches
Plant.h
Go to the documentation of this file.
1#pragma once
2
3#include <string_view>
4#include "faker-cxx/Export.h"
5
6namespace faker::plant
7{
17FAKER_CXX_EXPORT std::string_view tree();
18
28FAKER_CXX_EXPORT std::string_view flower();
29
39FAKER_CXX_EXPORT std::string_view shrub();
40
50FAKER_CXX_EXPORT std::string_view grass();
51
61FAKER_CXX_EXPORT std::string_view fern();
62
72FAKER_CXX_EXPORT std::string_view succulent();
73
83FAKER_CXX_EXPORT std::string_view vine();
84
94FAKER_CXX_EXPORT std::string_view plantType();
95}
Definition Plant.h:7
FAKER_CXX_EXPORT std::string_view fern()
Returns a random species of fern.
FAKER_CXX_EXPORT std::string_view flower()
Returns a random species of flower.
FAKER_CXX_EXPORT std::string_view tree()
Returns a random species of tree.
FAKER_CXX_EXPORT std::string_view plantType()
Returns a random type of plant.
FAKER_CXX_EXPORT std::string_view shrub()
Returns a random species of shrub.
FAKER_CXX_EXPORT std::string_view succulent()
Returns a random species of succulent.
FAKER_CXX_EXPORT std::string_view vine()
Returns a random species of vine.
FAKER_CXX_EXPORT std::string_view grass()
Returns a random species of grass.