/* * clkgen.h * * Created on: 02.01.2019 * Author: eyck */ #ifndef COMPONENTS_CLKGEN_H_ #define COMPONENTS_CLKGEN_H_ #include class ClkGen: public sc_core::sc_module { public: sc_core::sc_out clk_o; ClkGen(const sc_core::sc_module_name&); virtual ~ClkGen(); protected: void end_of_elabortation(); }; #endif /* COMPONENTS_CLKGEN_H_ */