クラス テンプレート sc_core::sc_fifo_in< T >

#include <sc_fifo_ports.h>

sc_core::sc_fifo_in< T >に対する継承グラフ

Inheritance graph
[凡例]

すべてのメンバ一覧

Public 型

typedef T data_type
typedef sc_fifo_in_if< data_typeif_type
typedef sc_port< if_type,
0, SC_ONE_OR_MORE_BOUND > 
base_type
typedef sc_fifo_in< data_typethis_type
typedef if_type in_if_type
typedef sc_port_b< in_if_typein_port_type

Public メソッド

 sc_fifo_in ()
 sc_fifo_in (const char *name_)
 sc_fifo_in (in_if_type &interface_)
 sc_fifo_in (const char *name_, in_if_type &interface_)
 sc_fifo_in (in_port_type &parent_)
 sc_fifo_in (const char *name_, in_port_type &parent_)
 sc_fifo_in (this_type &parent_)
 sc_fifo_in (const char *name_, this_type &parent_)
virtual ~sc_fifo_in ()
void read (data_type &value_)
data_type read ()
bool nb_read (data_type &value_)
int num_available () const
const sc_eventdata_written_event () const
sc_event_finderdata_written () const
virtual const char * kind () const

Private メソッド

 sc_fifo_in (const this_type &)
this_typeoperator= (const this_type &)


説明

template<class T>
class sc_core::sc_fifo_in< T >

sc_fifo_ports.h69 行で定義されています。


型定義

template<class T>
typedef T sc_core::sc_fifo_in< T >::data_type

sc_fifo_ports.h76 行で定義されています。

template<class T>
typedef sc_fifo_in_if<data_type> sc_core::sc_fifo_in< T >::if_type

sc_fifo_ports.h78 行で定義されています。

template<class T>
typedef sc_port<if_type,0,SC_ONE_OR_MORE_BOUND> sc_core::sc_fifo_in< T >::base_type

sc_core::sc_port< IF, N, P >を再定義しています。

sc_fifo_ports.h79 行で定義されています。

template<class T>
typedef sc_fifo_in<data_type> sc_core::sc_fifo_in< T >::this_type

sc_core::sc_port< IF, N, P >を再定義しています。

sc_fifo_ports.h80 行で定義されています。

template<class T>
typedef if_type sc_core::sc_fifo_in< T >::in_if_type

sc_fifo_ports.h82 行で定義されています。

template<class T>
typedef sc_port_b<in_if_type> sc_core::sc_fifo_in< T >::in_port_type

sc_fifo_ports.h83 行で定義されています。


コンストラクタとデストラクタ

template<class T>
sc_core::sc_fifo_in< T >::sc_fifo_in (  )  [inline]

sc_fifo_ports.h89 行で定義されています。

00090         : base_type()
00091         {}

template<class T>
sc_core::sc_fifo_in< T >::sc_fifo_in ( const char *  name_  )  [inline, explicit]

sc_fifo_ports.h93 行で定義されています。

00094         : base_type( name_ )
00095         {}

template<class T>
sc_core::sc_fifo_in< T >::sc_fifo_in ( in_if_type interface_  )  [inline, explicit]

sc_fifo_ports.h97 行で定義されています。

00098         : base_type( interface_ )
00099         {}

template<class T>
sc_core::sc_fifo_in< T >::sc_fifo_in ( const char *  name_,
in_if_type interface_ 
) [inline]

sc_fifo_ports.h101 行で定義されています。

00102         : base_type( name_, interface_ )
00103         {}

template<class T>
sc_core::sc_fifo_in< T >::sc_fifo_in ( in_port_type parent_  )  [inline, explicit]

sc_fifo_ports.h105 行で定義されています。

00106         : base_type( parent_ )
00107         {}

template<class T>
sc_core::sc_fifo_in< T >::sc_fifo_in ( const char *  name_,
in_port_type parent_ 
) [inline]

sc_fifo_ports.h109 行で定義されています。

00110         : base_type( name_, parent_ )
00111         {}

template<class T>
sc_core::sc_fifo_in< T >::sc_fifo_in ( this_type parent_  )  [inline]

sc_fifo_ports.h113 行で定義されています。

00114         : base_type( parent_ )
00115         {}

template<class T>
sc_core::sc_fifo_in< T >::sc_fifo_in ( const char *  name_,
this_type parent_ 
) [inline]

sc_fifo_ports.h117 行で定義されています。

00118         : base_type( name_, parent_ )
00119         {}

template<class T>
virtual sc_core::sc_fifo_in< T >::~sc_fifo_in (  )  [inline, virtual]

sc_fifo_ports.h124 行で定義されています。

00125         {}

template<class T>
sc_core::sc_fifo_in< T >::sc_fifo_in ( const this_type  )  [private]


関数

template<class T>
void sc_core::sc_fifo_in< T >::read ( data_type value_  )  [inline]

sc_fifo_ports.h132 行で定義されています。

00133         { (*this)->read( value_ ); }

template<class T>
data_type sc_core::sc_fifo_in< T >::read (  )  [inline]

sc_fifo_ports.h135 行で定義されています。

00136         { return (*this)->read(); }

template<class T>
bool sc_core::sc_fifo_in< T >::nb_read ( data_type value_  )  [inline]

sc_fifo_ports.h141 行で定義されています。

00142         { return (*this)->nb_read( value_ ); }

template<class T>
int sc_core::sc_fifo_in< T >::num_available (  )  const [inline]

sc_fifo_ports.h147 行で定義されています。

00148         { return (*this)->num_available(); }

template<class T>
const sc_event& sc_core::sc_fifo_in< T >::data_written_event (  )  const [inline]

sc_fifo_ports.h153 行で定義されています。

00154         { return (*this)->data_written_event(); }

template<class T>
sc_event_finder& sc_core::sc_fifo_in< T >::data_written (  )  const [inline]

sc_fifo_ports.h159 行で定義されています。

00160     {
00161         return *new sc_event_finder_t<in_if_type>(
00162             *this, &in_if_type::data_written_event );
00163     }

template<class T>
virtual const char* sc_core::sc_fifo_in< T >::kind (  )  const [inline, virtual]

sc_core::sc_port< IF, N, P >を再定義しています。

sc_fifo_ports.h165 行で定義されています。

00166         { return "sc_fifo_in"; }

template<class T>
this_type& sc_core::sc_fifo_in< T >::operator= ( const this_type  )  [private]


このクラスの説明は次のファイルから生成されました:

SystemCに対してFri Jun 6 20:11:44 2008に生成されました。  doxygen 1.5.6