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

#include <sc_fifo_ports.h>

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

Inheritance graph
[凡例]

すべてのメンバ一覧

Public 型

typedef T data_type
typedef sc_fifo_out_if< data_typeif_type
typedef sc_port< if_type,
0, SC_ONE_OR_MORE_BOUND > 
base_type
typedef sc_fifo_out< data_typethis_type
typedef if_type out_if_type
typedef sc_port_b< out_if_typeout_port_type

Public メソッド

 sc_fifo_out ()
 sc_fifo_out (const char *name_)
 sc_fifo_out (out_if_type &interface_)
 sc_fifo_out (const char *name_, out_if_type &interface_)
 sc_fifo_out (out_port_type &parent_)
 sc_fifo_out (const char *name_, out_port_type &parent_)
 sc_fifo_out (this_type &parent_)
 sc_fifo_out (const char *name_, this_type &parent_)
virtual ~sc_fifo_out ()
void write (const data_type &value_)
bool nb_write (const data_type &value_)
int num_free () const
const sc_eventdata_read_event () const
sc_event_finderdata_read () const
virtual const char * kind () const

Private メソッド

 sc_fifo_out (const this_type &)
this_typeoperator= (const this_type &)


説明

template<class T>
class sc_core::sc_fifo_out< T >

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


型定義

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

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

template<class T>
typedef sc_fifo_out_if<data_type> sc_core::sc_fifo_out< T >::if_type

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

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

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

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

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

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

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

template<class T>
typedef if_type sc_core::sc_fifo_out< T >::out_if_type

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

template<class T>
typedef sc_port_b<out_if_type> sc_core::sc_fifo_out< T >::out_port_type

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


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

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

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

00206         : base_type()
00207         {}

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

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

00210         : base_type( name_ )
00211         {}

template<class T>
sc_core::sc_fifo_out< T >::sc_fifo_out ( out_if_type interface_  )  [inline, explicit]

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

00214         : base_type( interface_ )
00215         {}

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

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

00218         : base_type( name_, interface_ )
00219         {}

template<class T>
sc_core::sc_fifo_out< T >::sc_fifo_out ( out_port_type parent_  )  [inline, explicit]

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

00222         : base_type( parent_ )
00223         {}

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

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

00226         : base_type( name_, parent_ )
00227         {}

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

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

00230         : base_type( parent_ )
00231         {}

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

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

00234         : base_type( name_, parent_ )
00235         {}

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

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

00241         {}

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


関数

template<class T>
void sc_core::sc_fifo_out< T >::write ( const data_type value_  )  [inline]

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

00249         { (*this)->write( value_ ); }

template<class T>
bool sc_core::sc_fifo_out< T >::nb_write ( const data_type value_  )  [inline]

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

00255         { return (*this)->nb_write( value_ ); }

template<class T>
int sc_core::sc_fifo_out< T >::num_free (  )  const [inline]

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

00261         { return (*this)->num_free(); }

template<class T>
const sc_event& sc_core::sc_fifo_out< T >::data_read_event (  )  const [inline]

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

00267         { return (*this)->data_read_event(); }

template<class T>
sc_event_finder& sc_core::sc_fifo_out< T >::data_read (  )  const [inline]

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

00273     {
00274         return *new sc_event_finder_t<out_if_type>(
00275             *this, &out_if_type::data_read_event );
00276     }

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

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

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

00279         { return "sc_fifo_out"; }

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


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

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