Services and Modeling for Embedded Software Development
Embecosm divider strip
Prev  Next

5.2.2.  Module Declaration and Constructor

The class is a standard SystemC module:

class LoggerSC
: public sc_core::sc_module
	  

A custom constructor is needed, which will be used to register the callback function for the simple target convenience socket blocking transport.

  LoggerSC( sc_core::sc_module_name  name );
	  
Embecosm divider strip