Operating System Simulator Plugin
3.5.1
Unreal Engine plugin that simulates an Operating System Environment
|
#include "OperatingSystemStoreProgramsCollection.h"
Public Member Functions | |
UOperatingSystemStoreProgramsCollection () | |
virtual void | Validate (FGenericError &OutError) override |
Validates the operating system store programs collection. | |
virtual const TSet< TSoftClassPtr< UOperatingSystemBaseProgram > > & | GetProgramClasses () const override |
Get the program classes of the operating system store programs collection. | |
FORCEINLINE const TSet< FOperatingSystemStoreProgramData > & | GetStorePrograms () const |
Get the operating system store programs. | |
Public Member Functions inherited from UOperatingSystemProgramsCollection | |
UOperatingSystemProgramsCollection () | |
Protected Attributes | |
TSet< FOperatingSystemStoreProgramData > | StorePrograms |
Protected Attributes inherited from UOperatingSystemProgramsCollection | |
TSet< TSoftClassPtr< UOperatingSystemBaseProgram > > | Programs |
A class that represents a collection of operating system store programs.
This class extends UOperatingSystemProgramsCollection and provides functions to manage and access operating system store program data.
UOperatingSystemStoreProgramsCollection::UOperatingSystemStoreProgramsCollection | ( | ) |
|
overridevirtual |
Get the program classes of the operating system store programs collection.
This method returns a reference to a constant TSet of TSoftClassPtr to UOperatingSystemBaseProgram. The set contains the program classes of the operating system store programs collection.
Reimplemented from UOperatingSystemProgramsCollection.
|
inline |
Get the operating system store programs.
This method returns a reference to a constant TSet of FOperatingSystemStoreProgramData. The set contains the operating system store program data.
|
overridevirtual |
Validates the operating system store programs collection.
This method checks if the store programs collection is empty or if any entry in the collection is null. If any of these conditions are met, an error is returned in the OutError parameter.
OutError | The reference to the FGenericError object that will store the error information if any error occurs. |
Reimplemented from UOperatingSystemProgramsCollection.
|
protected |
Defines a TSet variable for storing Operating System Store Program data.