From 2416e9e3f7ddff59b359d6242563bf0be6e808ee Mon Sep 17 00:00:00 2001 From: cieslarmichal Date: Thu, 2 Nov 2023 09:00:12 +0000 Subject: [PATCH] deploy: 033637a95b8ba665e1852bdb43386caf699214fe --- Weather_8h_source.html | 181 ++++++++ annotated.html | 9 +- annotated_dup.js | 1 + classes.html | 13 +- classfaker_1_1Weather-members.html | 118 ++++++ classfaker_1_1Weather.html | 394 ++++++++++++++++++ classfaker_1_1Weather.js | 7 + dir_21275a4f97039163a157995766de70c2.html | 2 + dir_21275a4f97039163a157995766de70c2.js | 1 + files.html | 3 +- functions_c.html | 1 + functions_func_c.html | 1 + functions_func_h.html | 1 + functions_func_p.html | 1 + functions_func_t.html | 1 + functions_func_u.html | 1 + functions_func_v.html | 1 + functions_func_w.html | 2 + functions_h.html | 1 + functions_p.html | 1 + functions_t.html | 1 + functions_u.html | 1 + functions_v.html | 1 + functions_w.html | 2 + navtreeindex0.js | 12 +- search/all_11.js | 9 +- search/all_12.js | 3 +- search/all_13.js | 3 +- search/all_14.js | 11 +- search/all_2.js | 53 +-- search/all_7.js | 3 +- search/all_e.js | 15 +- search/classes_b.js | 3 +- search/classes_d.js | 2 +- search/classes_e.js | 3 +- search/classes_f.js | 6 + search/functions_11.js | 9 +- search/functions_12.js | 3 +- search/functions_13.js | 3 +- search/functions_14.js | 10 +- search/functions_2.js | 47 ++- search/functions_7.js | 3 +- search/functions_e.js | 15 +- search/searchdata.js | 2 +- ...tfaker_1_1Weather_1_1Pressure-members.html | 112 +++++ structfaker_1_1Weather_1_1Pressure.html | 124 ++++++ ...ker_1_1Weather_1_1Temperature-members.html | 112 +++++ structfaker_1_1Weather_1_1Temperature.html | 124 ++++++ ...aker_1_1Weather_1_1Visibility-members.html | 112 +++++ structfaker_1_1Weather_1_1Visibility.html | 124 ++++++ ...faker_1_1Weather_1_1WindSpeed-members.html | 112 +++++ structfaker_1_1Weather_1_1WindSpeed.html | 124 ++++++ 52 files changed, 1804 insertions(+), 100 deletions(-) create mode 100644 Weather_8h_source.html create mode 100644 classfaker_1_1Weather-members.html create mode 100644 classfaker_1_1Weather.html create mode 100644 classfaker_1_1Weather.js create mode 100644 search/classes_f.js create mode 100644 structfaker_1_1Weather_1_1Pressure-members.html create mode 100644 structfaker_1_1Weather_1_1Pressure.html create mode 100644 structfaker_1_1Weather_1_1Temperature-members.html create mode 100644 structfaker_1_1Weather_1_1Temperature.html create mode 100644 structfaker_1_1Weather_1_1Visibility-members.html create mode 100644 structfaker_1_1Weather_1_1Visibility.html create mode 100644 structfaker_1_1Weather_1_1WindSpeed-members.html create mode 100644 structfaker_1_1Weather_1_1WindSpeed.html diff --git a/Weather_8h_source.html b/Weather_8h_source.html new file mode 100644 index 000000000..294e01df6 --- /dev/null +++ b/Weather_8h_source.html @@ -0,0 +1,181 @@ + + + + + + + +Faker C++: include/faker-cxx/Weather.h Source File + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
Faker C++ +
+
C++ Faker library for generating testing data
+
+
+ + + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
Weather.h
+
+
+
1#pragma once
+
2
+
3#include <string>
+
4
+
5namespace faker
+
6{
+
+
7class Weather
+
8{
+
9public:
+
+
10 struct Temperature {
+
11 double metric, imperial;
+
12 };
+
+
13
+ +
25
+
+
26 struct Pressure {
+
27 double metric;
+
28 double imperial;
+
29 };
+
+
30
+ +
41
+
+
42 struct Visibility {
+
43 double metric;
+
44 double imperial;
+
45 };
+
+
46
+ +
57
+
+
58 struct WindSpeed {
+
59 double metric;
+
60 double imperial;
+
61 };
+
+
62
+ +
73
+
83 static int uvIndex();
+
84
+
94 static int humidity();
+
95
+
105 static std::string weatherDescription();
+
106
+
116 static int cloudCover();
+
117};
+
+
118}
+
Definition Weather.h:8
+
static Pressure pressure()
Generated a random pressure.
+
static WindSpeed windSpeed()
Generated a random wind speed.
+
static int cloudCover()
Generated a random cloud cover percentage.
+
static std::string weatherDescription()
Generated a random weather description.
+
static Visibility visibility()
Generated a random visibility.
+
static Temperature temperature()
Generates a random temperature.
+
static int uvIndex()
Generated a random uvIndex.
+
static int humidity()
Generated a random humidity percentage.
+
Definition Weather.h:26
+
Definition Weather.h:10
+
Definition Weather.h:42
+
Definition Weather.h:58
+
+
+ + + + diff --git a/annotated.html b/annotated.html index edb7c8636..fd9ca3e81 100644 --- a/annotated.html +++ b/annotated.html @@ -96,7 +96,7 @@
Here are the classes, structs, unions and interfaces with brief descriptions:
-
[detail level 12]
+
[detail level 123]
@@ -123,7 +123,12 @@ - + + + + + +
 Nfaker
 CAnimal
 CBook
 CString
 CSystem
 CVideoGame
 CWord
 CWeather
 CPressure
 CTemperature
 CVisibility
 CWindSpeed
 CWord
diff --git a/annotated_dup.js b/annotated_dup.js index bfcda1cc1..e4c03d9e0 100644 --- a/annotated_dup.js +++ b/annotated_dup.js @@ -26,6 +26,7 @@ var annotated_dup = [ "String", "classfaker_1_1String.html", null ], [ "System", "classfaker_1_1System.html", null ], [ "VideoGame", "classfaker_1_1VideoGame.html", null ], + [ "Weather", "classfaker_1_1Weather.html", "classfaker_1_1Weather" ], [ "Word", "classfaker_1_1Word.html", null ] ] ] ]; \ No newline at end of file diff --git a/classes.html b/classes.html index 4fe9a2c76..62742ca97 100644 --- a/classes.html +++ b/classes.html @@ -95,7 +95,7 @@
Class Index
-
A | B | C | D | F | G | H | I | L | M | N | P | S | V | W
+
A | B | C | D | F | G | H | I | L | M | N | P | S | T | V | W
A
@@ -132,16 +132,19 @@
Number (faker)
P
-
Person (faker)
Phone (faker)
+
Person (faker)
Phone (faker)
Weather::Pressure (faker)
S
Sport (faker)
String (faker)
System (faker)
-
V
-
VideoGame (faker)
+
T
+
Weather::Temperature (faker)
+
V
+
VideoGame (faker)
Weather::Visibility (faker)
+
W
-
Word (faker)
+
Weather (faker)
Weather::WindSpeed (faker)
Word (faker)
diff --git a/classfaker_1_1Weather-members.html b/classfaker_1_1Weather-members.html new file mode 100644 index 000000000..e583970f8 --- /dev/null +++ b/classfaker_1_1Weather-members.html @@ -0,0 +1,118 @@ + + + + + + + +Faker C++: Member List + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
Faker C++ +
+
C++ Faker library for generating testing data
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+
faker::Weather Member List
+
+
+ +

This is the complete list of members for faker::Weather, including all inherited members.

+ + + + + + + + + +
cloudCover()faker::Weatherstatic
humidity()faker::Weatherstatic
pressure()faker::Weatherstatic
temperature()faker::Weatherstatic
uvIndex()faker::Weatherstatic
visibility()faker::Weatherstatic
weatherDescription()faker::Weatherstatic
windSpeed()faker::Weatherstatic
+
+ + + + diff --git a/classfaker_1_1Weather.html b/classfaker_1_1Weather.html new file mode 100644 index 000000000..23d44cd4e --- /dev/null +++ b/classfaker_1_1Weather.html @@ -0,0 +1,394 @@ + + + + + + + +Faker C++: faker::Weather Class Reference + + + + + + + + + + + + + + + +
+
+ + + + + + +
+
Faker C++ +
+
C++ Faker library for generating testing data
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+
+
+
+
+
Loading...
+
Searching...
+
No Matches
+
+
+
+
+ +
+ +
faker::Weather Class Reference
+
+
+ + + + + + + + + + +

+Classes

struct  Pressure
 
struct  Temperature
 
struct  Visibility
 
struct  WindSpeed
 
+ + + + + + + + + + + + + + + + + + + + + + + + + +

+Static Public Member Functions

static Temperature temperature ()
 Generates a random temperature.
 
static Pressure pressure ()
 Generated a random pressure.
 
static Visibility visibility ()
 Generated a random visibility.
 
static WindSpeed windSpeed ()
 Generated a random wind speed.
 
static int uvIndex ()
 Generated a random uvIndex.
 
static int humidity ()
 Generated a random humidity percentage.
 
static std::string weatherDescription ()
 Generated a random weather description.
 
static int cloudCover ()
 Generated a random cloud cover percentage.
 
+

Member Function Documentation

+ +

◆ cloudCover()

+ +
+
+ + + + + +
+ + + + + + + +
static int faker::Weather::cloudCover ()
+
+static
+
+ +

Generated a random cloud cover percentage.

+
Returns
Int A random cloud cover percentage
+
+
static int cloudCover()
Generated a random cloud cover percentage.
+
+
+
+ +

◆ humidity()

+ +
+
+ + + + + +
+ + + + + + + +
static int faker::Weather::humidity ()
+
+static
+
+ +

Generated a random humidity percentage.

+
Returns
Int A random humidity percentage
+
+
static int humidity()
Generated a random humidity percentage.
+
+
+
+ +

◆ pressure()

+ +
+
+ + + + + +
+ + + + + + + +
static Pressure faker::Weather::pressure ()
+
+static
+
+ +

Generated a random pressure.

+
Returns
Pressure object with metric and imperial pressures
+
Weather::pressure(); // Pressure.metric = 1000, Pressure.imperial = 14.5
+
static Pressure pressure()
Generated a random pressure.
+
+
+
+ +

◆ temperature()

+ +
+
+ + + + + +
+ + + + + + + +
static Temperature faker::Weather::temperature ()
+
+static
+
+ +

Generates a random temperature.

+
Returns
Temperature object with metric and imperial temperatures
+
Weather::temperature(); // Temperature.metric = 10, Temperature.imperial = 50
+
static Temperature temperature()
Generates a random temperature.
+
+
+
+ +

◆ uvIndex()

+ +
+
+ + + + + +
+ + + + + + + +
static int faker::Weather::uvIndex ()
+
+static
+
+ +

Generated a random uvIndex.

+
Returns
Int A random uvIndex
+
+
static int uvIndex()
Generated a random uvIndex.
+
+
+
+ +

◆ visibility()

+ +
+
+ + + + + +
+ + + + + + + +
static Visibility faker::Weather::visibility ()
+
+static
+
+ +

Generated a random visibility.

+
Returns
Visibility object with metric and imperial visibility
+
Weather::visibility(); // Visibility.metric = 10.0, Visibility.imperial = 6.2
+
static Visibility visibility()
Generated a random visibility.
+
+
+
+ +

◆ weatherDescription()

+ +
+
+ + + + + +
+ + + + + + + +
static std::string faker::Weather::weatherDescription ()
+
+static
+
+ +

Generated a random weather description.

+
Returns
String A random weather description
+
Weather::description(); // "Sunny"
+
+
+
+ +

◆ windSpeed()

+ +
+
+ + + + + +
+ + + + + + + +
static WindSpeed faker::Weather::windSpeed ()
+
+static
+
+ +

Generated a random wind speed.

+
Returns
WindSpeed object with metric and imperial wind speed
+
Weather::windSpeed(); // WindSpeed.metric = 10.0, WindSpeed.imperial = 6.2
+
static WindSpeed windSpeed()
Generated a random wind speed.
+
+
+
+
The documentation for this class was generated from the following file: +
+
+ + + + diff --git a/classfaker_1_1Weather.js b/classfaker_1_1Weather.js new file mode 100644 index 000000000..04692a69b --- /dev/null +++ b/classfaker_1_1Weather.js @@ -0,0 +1,7 @@ +var classfaker_1_1Weather = +[ + [ "Pressure", "structfaker_1_1Weather_1_1Pressure.html", null ], + [ "Temperature", "structfaker_1_1Weather_1_1Temperature.html", null ], + [ "Visibility", "structfaker_1_1Weather_1_1Visibility.html", null ], + [ "WindSpeed", "structfaker_1_1Weather_1_1WindSpeed.html", null ] +]; \ No newline at end of file diff --git a/dir_21275a4f97039163a157995766de70c2.html b/dir_21275a4f97039163a157995766de70c2.html index 9c5f4bb96..dfe04ae91 100644 --- a/dir_21275a4f97039163a157995766de70c2.html +++ b/dir_21275a4f97039163a157995766de70c2.html @@ -157,6 +157,8 @@    VideoGame.h   + Weather.h Word.h   diff --git a/dir_21275a4f97039163a157995766de70c2.js b/dir_21275a4f97039163a157995766de70c2.js index 7754ee71e..6f6771db3 100644 --- a/dir_21275a4f97039163a157995766de70c2.js +++ b/dir_21275a4f97039163a157995766de70c2.js @@ -25,5 +25,6 @@ var dir_21275a4f97039163a157995766de70c2 = [ "String.h", "String_8h_source.html", null ], [ "System.h", "System_8h_source.html", null ], [ "VideoGame.h", "VideoGame_8h_source.html", null ], + [ "Weather.h", "Weather_8h_source.html", null ], [ "Word.h", "Word_8h_source.html", null ] ]; \ No newline at end of file diff --git a/files.html b/files.html index 3333c2997..6c3a82087 100644 --- a/files.html +++ b/files.html @@ -124,7 +124,8 @@  String.h  System.h  VideoGame.h - Word.h + Weather.h + Word.h diff --git a/functions_c.html b/functions_c.html index 5c1e741f7..8c2f9f9c1 100644 --- a/functions_c.html +++ b/functions_c.html @@ -102,6 +102,7 @@

- c -