?? layered1.cpp
字號:
// Layered1.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include<iostream.h>
#include"L1Provider.h"
#include"L2Provider.h"
#include"L3Provider.h"
#include"DataLink.h"
#include"Transport.h"
#include"Session.h"
void main()
{
DataLink dataLink;
Transport transport;
Session session;
transport.setLowerLayer(&dataLink);
session.setLowerLayer(&transport);
session.L3Service();
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -