⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 opencommand.cpp

📁 设计模式
💻 CPP
字号:
#include ".\opencommand.h"
#include "stdafx.h"
#include "Application.h"
#include "Document.h"

#include <iostream>
using namespace std;

OpenCommand::OpenCommand(Application* app)
{
	_application = app;
}

OpenCommand::~OpenCommand(void)
{
}

void OpenCommand::Execute(void)
{
	_response = AskUser();
	while(_response != "end")
	{
		assert(!_response.empty());
		Document* document = new Document(_response);
		_application->Add(document);
		cout<<"Adding document \n";
		_response = AskUser();
	}
	_application->PrintDocs();
}

string OpenCommand::AskUser(void)
{
	cout<<"input file name,type 'end' for end:";
	string input;
	cin>>input;
	return input;
}

⌨️ 快捷键说明

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