#include "fighterplane.h"
#include <iostream>
using namespace std;
FighterPlane::FighterPlane(string code):plane(code)
{
//ctor
}
void FighterPlane::takeoff()
{
cout <<"FighterPlane--takeoff"<<endl;
}
void FighterPlane::land()
{
cout <<"FighterPlane--land"<<endl;
}
慕圣2268672
onemoo
随时随地看视频慕课网APP
相关分类