FOperatingSystemStoreApps
#include <OperatingSystemSimulator/Public/Data/OperatingSystemStoreTypes.h>Collaboration diagram
Section titled “Collaboration diagram”---
config:
class:
hideEmptyMembersBox: true
---
classDiagram
class FOperatingSystemStoreApps["FOperatingSystemStoreApps"]
class FOperatingSystemStoreProgramData["FOperatingSystemStoreProgramData"]
FOperatingSystemStoreApps *-- FOperatingSystemStoreProgramData
Class detail
Section titled “Class detail”---
config:
class:
hideEmptyMembersBox: true
---
classDiagram
class FOperatingSystemStoreApps {
+StoreProgram : TArray< FOperatingSystemStoreProgramData
+AverageRatings : TArray< float >
+FOperatingSystemStoreApps()=default
}
struct FOperatingSystemStoreAppsDefined in OperatingSystemStoreTypes.h:189 Represents a structure that stores information about operating system store apps.
This structure contains an array of FOperatingSystemStoreProgramData which represents data about each store program. It also includes an array of floating-point numbers to store average ratings for the group of operating system store apps. The average ratings are in the range of 0.0 to 5.0 and can be used for various operations, such as filtering apps, calculating overall average, etc.
Public Attributes
Section titled “Public Attributes”| Return | Name | Description |
|---|---|---|
TArray< FOperatingSystemStoreProgramData > | StoreProgram | StoreProgram stores information about operating system store programs. |
TArray< float > | AverageRatings | Represents the average ratings for a group of operating system store apps. The ratings are stored as floating-point numbers in the range of 0.0 to 5.0. |
StoreProgram
Section titled “StoreProgram”TArray< FOperatingSystemStoreProgramData > StoreProgramDefined in OperatingSystemStoreTypes.h:199 StoreProgram stores information about operating system store programs.
FOperatingSystemStoreProgramData is a structure that represents data about a store program.
Referenced by
Section titled “Referenced by”AverageRatings
Section titled “AverageRatings”TArray< float > AverageRatingsDefined in OperatingSystemStoreTypes.h:212 Represents the average ratings for a group of operating system store apps. The ratings are stored as floating-point numbers in the range of 0.0 to 5.0.
This variable can be used to track and display the average ratings of operating system store apps and perform operations, such as finding the highest or lowest rating, calculating the overall average, or filtering apps based on their ratings.
Public Methods
Section titled “Public Methods”| Return | Name | Description |
|---|---|---|
FOperatingSystemStoreApps | Default constructor. |
FOperatingSystemStoreApps
Section titled “FOperatingSystemStoreApps”FOperatingSystemStoreApps() = defaultDefined in OperatingSystemStoreTypes.h:215 Default constructor.