#include <sc_fxcast_switch.h>
Public メソッド | |
sc_fxcast_switch () | |
sc_fxcast_switch (sc_switch) | |
sc_fxcast_switch (const sc_fxcast_switch &) | |
sc_fxcast_switch (sc_without_context) | |
sc_fxcast_switch & | operator= (const sc_fxcast_switch &) |
const std::string | to_string () const |
void | print (::std::ostream &=::std::cout) const |
void | dump (::std::ostream &=::std::cout) const |
Private 変数 | |
sc_switch | m_sw |
フレンド | |
bool | operator== (const sc_fxcast_switch &, const sc_fxcast_switch &) |
bool | operator!= (const sc_fxcast_switch &, const sc_fxcast_switch &) |
sc_fxcast_switch.h の 65 行で定義されています。
sc_dt::sc_fxcast_switch::sc_fxcast_switch | ( | ) | [inline] |
sc_fxcast_switch.h の 106 行で定義されています。
00107 { 00108 *this = sc_fxcast_context::default_value(); 00109 }
sc_dt::sc_fxcast_switch::sc_fxcast_switch | ( | sc_switch | sw_ | ) | [inline] |
sc_dt::sc_fxcast_switch::sc_fxcast_switch | ( | const sc_fxcast_switch & | a | ) | [inline] |
sc_dt::sc_fxcast_switch::sc_fxcast_switch | ( | sc_without_context | ) | [inline, explicit] |
sc_fxcast_switch & sc_dt::sc_fxcast_switch::operator= | ( | const sc_fxcast_switch & | a | ) | [inline] |
sc_fxcast_switch.h の 129 行で定義されています。
00130 { 00131 if( &a != this ) 00132 { 00133 m_sw = a.m_sw; 00134 } 00135 return *this; 00136 }
const std::string sc_dt::sc_fxcast_switch::to_string | ( | ) | const |
void sc_dt::sc_fxcast_switch::print | ( | ::std::ostream & | os = ::std::cout |
) | const |
void sc_dt::sc_fxcast_switch::dump | ( | ::std::ostream & | os = ::std::cout |
) | const |
sc_fxcast_switch.cpp の 75 行で定義されています。
00076 { 00077 os << "sc_fxcast_switch" << ::std::endl; 00078 os << "(" << ::std::endl; 00079 os << "sw = " << sc_dt::to_string( m_sw ) << ::std::endl; 00080 os << ")" << ::std::endl; 00081 }
bool operator== | ( | const sc_fxcast_switch & | a, | |
const sc_fxcast_switch & | b | |||
) | [friend] |
bool operator!= | ( | const sc_fxcast_switch & | a, | |
const sc_fxcast_switch & | b | |||
) | [friend] |
sc_switch sc_dt::sc_fxcast_switch::m_sw [private] |
sc_fxcast_switch.h の 89 行で定義されています。