#ifndef PRINT_H #define PRINT_H #include "config.h" #include SC_MODULE( print ) { sc_in > in; void read(); SC_CTOR( print ) { SC_METHOD( read ); sensitive << in; dont_initialize(); } }; #endif /* PRINT_H */