Searched refs:wxBitset (Results 1 - 2 of 2) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/
H A Dflags.h15 // wxBitset should be applied to an enum, then this can be used like
21 template <class T> class wxBitset class
25 // creates a wxBitset<> object with all flags initialized to 0
26 wxBitset() { m_data = 0; } function in class:wxBitset
28 // created a wxBitset<> object initialized according to the bits of the
30 wxBitset(unsigned long val) { m_data = val ; } function in class:wxBitset
32 // copies the content in the new wxBitset<> object from another one
33 wxBitset(const wxBitset &src) { m_data = src.m_data; } function in class:wxBitset
35 // creates a wxBitset<> objec
36 wxBitset(const T el) { m_data |= 1 << el; } function in class:wxBitset
[all...]
H A Dxti.h190 // typedef wxBitset<wxFlavor> wxCoupe ;
211 void wxSetFromString(const wxString &s , wxBitset<e> &data )
231 void wxSetToString( wxString &s , const wxBitset<e> &data )
251 template<> void wxStringReadValue(const wxString &s , wxBitset<e> &data ) \
255 template<> void wxStringWriteValue( wxString &s , const wxBitset<e> &data ) \
355 wxT_SET, // must be wxBitset<> template

Completed in 175 milliseconds