session.cpp

来自「软件体系结构中的层模式实现」· C++ 代码 · 共 28 行

CPP
28
字号
// Session.cpp: implementation of the Session class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "Session.h"

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

Session::Session()
{

}

Session::~Session()
{

}

void Session::L3Service()
{cout<<"L3Service starting its job"<<endl;
level2->L2Service();
cout<<"L3Service finishing its job"<<endl;

};

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?