MeVisLab Toolbox Reference
ml::MemoryInfo Class Reference

Singleton class that provides hardware specific information. More...

#include <mlMemoryInfo.h>

Public Member Functions

unsigned int getTotalPhysicalMemoryInMB () const
 Returns the total amount of physical memory in MB. More...
 
unsigned int getAvailableMemoryInMB () const
 Returns the available amount of memory in MB. More...
 

Static Public Member Functions

static MemoryInfogetInstance ()
 Returns the single existing object of this class. More...
 

Protected Member Functions

 MemoryInfo ()
 This constructor must not be called from anywhere else but the getInstance() method (which does call this function if the static pointer to the valid object is not set yet). More...
 

Detailed Description

Singleton class that provides hardware specific information.

To get a pointer to a valid object of this type use the getInstance() method.

Definition at line 26 of file mlMemoryInfo.h.

Constructor & Destructor Documentation

◆ MemoryInfo()

ml::MemoryInfo::MemoryInfo ( )
protected

This constructor must not be called from anywhere else but the getInstance() method (which does call this function if the static pointer to the valid object is not set yet).

Member Function Documentation

◆ getAvailableMemoryInMB()

unsigned int ml::MemoryInfo::getAvailableMemoryInMB ( ) const
inline

Returns the available amount of memory in MB.

Definition at line 56 of file mlMemoryInfo.h.

◆ getInstance()

static MemoryInfo& ml::MemoryInfo::getInstance ( )
static

Returns the single existing object of this class.

The concept of this class is based on the Singleton design pattern which ensures there is only one object of this class. (NOT THREADSAFE!)

◆ getTotalPhysicalMemoryInMB()

unsigned int ml::MemoryInfo::getTotalPhysicalMemoryInMB ( ) const
inline

Returns the total amount of physical memory in MB.

Definition at line 48 of file mlMemoryInfo.h.


The documentation for this class was generated from the following file: