📄 wheel.cpp
字号:
//BEGIN Wheel.cpp//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//See sedan.h for more information//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~#include "Wheel.h"// ConstructorWheel::Wheel(sc_module_name nm): sc_module(nm){ cout << "INFO: Constructing instance " << name() << endl; SC_THREAD(Wheel_thread);}//end Wheel constructorvoid Wheel::Wheel_thread(void) { cout << "INFO: Ran Wheel_thread inside instance " << name() << endl;}//end Wheel_thread()//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~//END $Id: Wheel.cpp,v 1.4 2004/03/04 21:04:07 dcblack Exp $
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -