Nektar++
Public Member Functions | Private Attributes | List of all members
Nektar::FlagList Class Reference

Defines a list of flags. More...

#include <NektarUnivTypeDefs.hpp>

Public Member Functions

void set (const FlagType &key, bool value)
 
bool isSet (const FlagType &key) const
 

Private Attributes

std::map< FlagType, bool > m_data
 

Detailed Description

Defines a list of flags.

Definition at line 98 of file NektarUnivTypeDefs.hpp.

Member Function Documentation

◆ isSet()

bool Nektar::FlagList::isSet ( const FlagType key) const
inline

◆ set()

void Nektar::FlagList::set ( const FlagType key,
bool  value 
)
inline

Definition at line 101 of file NektarUnivTypeDefs.hpp.

102  {
103  m_data[key] = value;
104  }
std::map< FlagType, bool > m_data

Member Data Documentation

◆ m_data

std::map<FlagType, bool> Nektar::FlagList::m_data
private

Definition at line 111 of file NektarUnivTypeDefs.hpp.