diff --git a/Image_8h_source.html b/Image_8h_source.html index 573ee6841..461513494 100644 --- a/Image_8h_source.html +++ b/Image_8h_source.html @@ -107,37 +107,33 @@
3#include <optional>
4#include <string_view>
5
-
6namespace faker
+
6namespace faker::image
7{
-
8class Image
-
9{
-
10public:
-
11 enum class ImageCategory
-
12 {
-
13 Animals,
-
14 Business,
-
15 Cats,
-
16 City,
-
17 Food,
-
18 Nightlife,
-
19 Fashion,
-
20 People,
-
21 Nature,
-
22 Sports,
-
23 Technics,
-
24 Transport
-
25 };
-
26
-
42 static std::string imageUrl(unsigned width = 640, unsigned height = 480,
-
43 std::optional<ImageCategory> category = std::nullopt);
-
44
-
54 static std::string githubAvatarUrl();
-
55
-
65 static std::string dimensions();
-
66
-
75 static std::string_view type();
-
76};
-
77}
+
8 enum class ImageCategory
+
9 {
+
10 Animals,
+
11 Business,
+
12 Cats,
+
13 City,
+
14 Food,
+
15 Nightlife,
+
16 Fashion,
+
17 People,
+
18 Nature,
+
19 Sports,
+
20 Technics,
+
21 Transport
+
22 };
+
23
+
39 std::string imageUrl(unsigned width = 640, unsigned height = 480,
+
40 std::optional<ImageCategory> category = std::nullopt);
+
41
+
51 std::string githubAvatarUrl();
+
52
+
62 std::string dimensions();
+
63
+
72 std::string_view type();
+
73}