Home
last modified time | relevance | path

Searched refs:self_type (Results 1 – 1 of 1) sorted by relevance

/NW4C-2.0.3/include/nw/gfx/
Dgfx_Common.h81 typedef Result self_type; //!< 自分の型です。 typedef
96 self_type operator = (u32 code) { m_Code = code; return *this; }
98 self_type operator |= (u32 code) { m_Code |= code; return *this; }
100 self_type operator &= (u32 code) { m_Code &= code; return *this; }
102 self_type operator = (self_type result) { m_Code = result.GetCode(); return *this; }
104 self_type operator |= (self_type result) { m_Code |= result.GetCode(); return *this; }
106 self_type operator &= (self_type result) { m_Code &= result.GetCode(); return *this; }