Jump to content

KrBitfield

From EDM2
Revision as of 16:27, 5 April 2015 by Martini (talk | contribs) (Created page with "==Description == '''#include "krwc.hpp"''' This class represents a set of options, each of which has a name, and each of which can indpendently be selected or deselected. It...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Description

#include "krwc.hpp"

This class represents a set of options, each of which has a name, and each of which can indpendently be selected or deselected. Its main purpose is to be used as an input data structure for KrWinComm.

Derivation

KrBitfield inherits from IBase.

Constructors

You can construct and destruct objects of this class.

The default constructor creates an empty set of options. Before an object created that way is actually used, add should have been called at least once.

Overload 1

public: 
KrBitfield (); 

You may also construct a KrBitfield object from an existing KrBitfieldData object.

Overload 2

public: 
KrBitfield (const KrBitfieldData & aData); 

Public Functions