FOperatingSystemProgramSaveLoad
#include <OperatingSystemSimulator/Public/OperatingSystemSaveLoad.h>Class detail
Section titled “Class detail”---
config:
class:
hideEmptyMembersBox: true
---
classDiagram
class FOperatingSystemProgramSaveLoad {
+ClassPath : FString
+PartitionID : FString
+FOperatingSystemProgramSaveLoad()=default
}
struct FOperatingSystemProgramSaveLoadDefined in OperatingSystemSaveLoad.h:152 Represents the save/load data for a specific operating system program.
Public Attributes
Section titled “Public Attributes”| Return | Name | Description |
|---|---|---|
FString | ClassPath | Represents the class path for a program in the operating system. |
FString | PartitionID | Store the ID of a partition. It is typically used in the save/load operations and is used to identify a specific partition. The ID is stored as a string. |
ClassPath
Section titled “ClassPath”FString ClassPathDefined in OperatingSystemSaveLoad.h:169 Represents the class path for a program in the operating system.
This variable is used in the save/load process of a program in the operating system. It holds the class path of the program to be saved or loaded. The class path is a string representation of the class type of the program.
Examples:
-
“Class’/Game/Programs/CalculatorProgram.CalculatorProgram_C’”
-
“Class’/Game/Programs/TextEditorProgram.TextEditorProgram_C’”
-
“Class’/Game/Programs/WebBrowserProgram.WebBrowserProgram_C‘“
PartitionID
Section titled “PartitionID”FString PartitionIDDefined in OperatingSystemSaveLoad.h:184 Store the ID of a partition. It is typically used in the save/load operations and is used to identify a specific partition. The ID is stored as a string.
Example:
-
“Partition_001”
-
“Partition_002”
-
“Partition_003”
See also: FOperatingSystemProgramSaveLoad::PartitionID
Public Methods
Section titled “Public Methods”| Return | Name | Description |
|---|---|---|
FOperatingSystemProgramSaveLoad | Defaulted constructor. |
FOperatingSystemProgramSaveLoad
Section titled “FOperatingSystemProgramSaveLoad”FOperatingSystemProgramSaveLoad() = defaultDefined in OperatingSystemSaveLoad.h:186 Defaulted constructor.