Faker C++
Loading...
Searching...
No Matches
Vehicle.h
Go to the documentation of this file.
1#pragma once
2
3#include <string_view>
4#include "faker-cxx/Export.h"
5
7{
17 FAKER_CXX_EXPORT std::string_view bicycle();
18
28 FAKER_CXX_EXPORT std::string_view color();
29
39 FAKER_CXX_EXPORT std::string_view fuel();
40
50 FAKER_CXX_EXPORT std::string_view manufacturer();
51
61 FAKER_CXX_EXPORT std::string_view model();
62
72 FAKER_CXX_EXPORT std::string_view type();
73
83 FAKER_CXX_EXPORT std::string vehicleName();
84
94 FAKER_CXX_EXPORT std::string vin();
95
105 FAKER_CXX_EXPORT std::string vrm();
106}
Definition Vehicle.h:7
FAKER_CXX_EXPORT std::string_view fuel()
Returns a random vehicle fuel.
FAKER_CXX_EXPORT std::string_view manufacturer()
Returns a random vehicle(car) manufacturer.
FAKER_CXX_EXPORT std::string vin()
Returns a vehicle identification number (VIN).
FAKER_CXX_EXPORT std::string vrm()
Returns a vehicle registration number (Vehicle Registration Mark - VRM).
FAKER_CXX_EXPORT std::string_view color()
Returns a random vehicle color.
FAKER_CXX_EXPORT std::string vehicleName()
Returns a random vehicle(car).
FAKER_CXX_EXPORT std::string_view bicycle()
Returns a random bicycle type.
FAKER_CXX_EXPORT std::string_view type()
Returns a random vehicle type.
FAKER_CXX_EXPORT std::string_view model()
Returns a random vehicle(car) model.