Operating System Simulator Plugin
3.5.1
Unreal Engine plugin that simulates an Operating System Environment
|
A class that manages the internet browser history. More...
#include "InternetBrowserHistoryManager.h"
Public Member Functions | |
void | DeleteHistory (const FInternetBrowserHistory &InHistory) |
Deletes a single history entry from the internet browser history. | |
Static Public Member Functions | |
static UInternetBrowserHistoryManager * | GetHistoryManager () |
Returns the instance of UInternetBrowserHistoryManager. This function retrieves the instance of UInternetBrowserHistoryManager. If the instance is not created yet, it creates a new instance and adds it to the root. Subsequent calls to this function will return the same instance. | |
static void | DestroyHistoryManager () |
Removes and destroys the instance of UInternetBrowserHistoryManager. | |
Public Attributes | |
TArray< FInternetBrowserHistory > | History |
A class that manages the internet browser history.
void UInternetBrowserHistoryManager::DeleteHistory | ( | const FInternetBrowserHistory & | InHistory | ) |
Deletes a single history entry from the internet browser history.
This method removes the specified history entry from the internet browser history.
InHistory | The history entry to be deleted. |
|
static |
Removes and destroys the instance of UInternetBrowserHistoryManager.
This function removes the instance of UInternetBrowserHistoryManager from the root and destroys it. If the instance is not created, this function does nothing.
|
static |
Returns the instance of UInternetBrowserHistoryManager. This function retrieves the instance of UInternetBrowserHistoryManager. If the instance is not created yet, it creates a new instance and adds it to the root. Subsequent calls to this function will return the same instance.
TArray<FInternetBrowserHistory> UInternetBrowserHistoryManager::History |