📄 transport.cpp
字号:
// Transport.cpp: implementation of the Transport class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "Transport.h"
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
Transport::Transport()
{
};
Transport::~Transport()
{
};
void Transport::L2Service()
{cout<<"L2Service starting its job"<<endl;
level1->L1Service();
cout<<"L2Service finishing its job"<<endl;
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -