Skip to content

FOperatingSystemSettingModuleInfo

#include <OperatingSystemSimulator/Public/Programs/Settings/OperatingSystemSettingModuleInfo.h>
---
config:
  class:
    hideEmptyMembersBox: true
---
classDiagram
  class FOperatingSystemSettingModuleInfo {
    +Title : FText
    +Description : FText
    +Icon : TSoftObjectPtr< UObject >
    +IsValid() const bool
    +operator==(const FOperatingSystemSettingModuleInfo &Ot bool
    +FOperatingSystemSettingModuleInfo()
  }
struct FOperatingSystemSettingModuleInfo

Defined in OperatingSystemSettingModuleInfo.h:12 Basic information regarding an operating system setting module.

NameDescription
GetTypeHash inlineCalculates the hash value for the given [FOperatingSystemSettingModuleInfo](#foperatingsystemsettingmoduleinfo) object. This method calculates the hash value for the given [FOperatingSystemSettingModuleInfo](#foperatingsystemsettingmoduleinfo) object by combining the hash values of its Title, Description, and Icon properties.

inline

friend inline uint32 GetTypeHash(const FOperatingSystemSettingModuleInfo & Other)

Defined in OperatingSystemSettingModuleInfo.h:50 Calculates the hash value for the given [FOperatingSystemSettingModuleInfo](#foperatingsystemsettingmoduleinfo) object. This method calculates the hash value for the given [FOperatingSystemSettingModuleInfo](#foperatingsystemsettingmoduleinfo) object by combining the hash values of its Title, Description, and Icon properties.

  • Other The [FOperatingSystemSettingModuleInfo](#foperatingsystemsettingmoduleinfo) object for which to calculate the hash value.

The hash value of the Other object.

ReturnNameDescription
FTextTitleUser facing title.
FTextDescriptionA description for this module.
TSoftObjectPtr< UObject >IconSeriously? A tooltip…for this. This is obvious right? ¯(ツ)

FText Title

Defined in OperatingSystemSettingModuleInfo.h:18 User facing title.


FText Description

Defined in OperatingSystemSettingModuleInfo.h:22 A description for this module.


TSoftObjectPtr< UObject > Icon

Defined in OperatingSystemSettingModuleInfo.h:26 Seriously? A tooltip…for this. This is obvious right? ¯(ツ)

ReturnNameDescription
boolIsValid const inlineCheck if the operating system setting module is valid by checking Title and Description of the module are neither empty nor whitespace.
booloperator== const inline
FOperatingSystemSettingModuleInfo inline

const inline

inline bool IsValid() const

Defined in OperatingSystemSettingModuleInfo.h:33 Check if the operating system setting module is valid by checking Title and Description of the module are neither empty nor whitespace.

True if the operating system setting module is valid, false otherwise.


const inline

inline bool operator==(const FOperatingSystemSettingModuleInfo & Other) const

Defined in OperatingSystemSettingModuleInfo.h:38


inline

inline FOperatingSystemSettingModuleInfo()

Defined in OperatingSystemSettingModuleInfo.h:55