Om  1.0.0
A universal framework for multimedia simulation
Public Types | Public Member Functions | List of all members
om::resources::ResourceFlags Class Reference

A class that encapsulates the different boolean flags that Resource can have. More...

#include <omResourceFlags.h>

Public Types

enum  Flag { UNDEFINED = 0, EXTERNAL = (1 << 0), DEFAULT = UNDEFINED }
 An enum that specifies the different resource flags. More...
 

Public Member Functions

 ResourceFlags ()
 Create a new resource flags object with no flags set. More...
 
 ResourceFlags (Flag flag)
 Create a new resource flags object with the specified flag value initially set. More...
 
 ResourceFlags (UInt32 newFlags)
 Create a new resource flags object with the specified initial combined flags value. More...
 
 operator UInt32 () const
 Convert this resource flags object to an integer value. More...
 
Bool isSet (Flag flag) const
 Return whether or not the specified flag value is set for this flags object. More...
 
void set (Flag flag, Bool newIsSet)
 Set whether or not the specified flag value is set for this flags object. More...
 

Detailed Description

A class that encapsulates the different boolean flags that Resource can have.

These flags provide boolean parameters for resource resources. Flags are indicated by setting a single bit of a 32-bit unsigned integer to 1.

Enum values for the different flags are defined as members of the class. Typically, the user would bitwise-OR the flag enum values together to produce a final set of set flags.

Member Enumeration Documentation

An enum that specifies the different resource flags.

Enumerator
UNDEFINED 

The flag value when all flags are not set.

EXTERNAL 

A flag indicating that the resource should be stored in an external file.

If set, the resource will be saved to an external file at its file path location. If the flag is not set, the resource is stored locally in a resource set.

DEFAULT 

The default flags to use for a resource.

Constructor & Destructor Documentation

om::resources::ResourceFlags::ResourceFlags ( )
inline

Create a new resource flags object with no flags set.

om::resources::ResourceFlags::ResourceFlags ( Flag  flag)
inline

Create a new resource flags object with the specified flag value initially set.

om::resources::ResourceFlags::ResourceFlags ( UInt32  newFlags)
inline

Create a new resource flags object with the specified initial combined flags value.

Member Function Documentation

om::resources::ResourceFlags::operator UInt32 ( ) const
inline

Convert this resource flags object to an integer value.

This operator is provided so that the CollisionFlags shape can be used as an integer value for bitwise logical operations.

Bool om::resources::ResourceFlags::isSet ( Flag  flag) const
inline

Return whether or not the specified flag value is set for this flags object.

void om::resources::ResourceFlags::set ( Flag  flag,
Bool  newIsSet 
)
inline

Set whether or not the specified flag value is set for this flags object.


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