Skip to content

FOperatingSystemSizeInMB

#include <OperatingSystemSimulator/Public/OperatingSystemSize.h>
---
config:
  class:
    hideEmptyMembersBox: true
---
classDiagram
  class FOperatingSystemSizeInMB {
    +SizeInBytes : const double
    +FOperatingSystemSizeInMB()
    +FOperatingSystemSizeInMB(const double Size)
    +GetValue(const double &TestSizeInBytes) double
  }
struct FOperatingSystemSizeInMB

Defined in OperatingSystemSize.h:10 Represents the size of an operating system in megabytes.

ReturnNameDescription
const doubleSizeInBytesRepresents the size in bytes.

const double SizeInBytes

Defined in OperatingSystemSize.h:17 Represents the size in bytes.

ReturnNameDescription
FOperatingSystemSizeInMB inline
FOperatingSystemSizeInMB inline explicit

inline

inline FOperatingSystemSizeInMB()

inline explicit

inline explicit FOperatingSystemSizeInMB(const double Size)

Defined in OperatingSystemSize.h:34

ReturnNameDescription
doubleGetValue static inlineA static method that calculates the value of a given test size in bytes and converts it to megabytes.

static inline

static inline double GetValue(const double & TestSizeInBytes)

Defined in OperatingSystemSize.h:27 A static method that calculates the value of a given test size in bytes and converts it to megabytes.

This method takes the test size in bytes and calculates its value in megabytes. The calculated value is returned as a double.

  • TestSizeInBytes The test size in bytes.

The calculated value of the test size in megabytes.